在這個lua函數中,我想以粗體顯示設備和臨時值。不知道這是如何工作的,因爲報表模型是concat。lua - 用粗體文本打印
function getmail(index)
if ((last_mail == nil) or (now - last_mail > set_timer)) then
report_model = [[
Device: %s
Device Location: %s
___________________________________
Current Temperature: %d F
Temperature Limit: (%d-%d F)
Current Humidity Level: %d %%
Humidity Limit: (%d-%d %%)
**Time Recorded at: %s**]]
d = devicetable[index]
report_content = report_model:format(device_name, description,
temperature, t_under_limit, t_over_limit,
humidity, h_under_limit, h_over_limit,
os.date())
這和Lua沒什麼關係,並且與您要打印的設備有關,所以我們需要知道該設備是什麼。 –