Format Uptime as String (#100)

* Format Uptime as String

Format uptime as a string with values for days, hours, minutes, and 
seconds.

* Format uptime as String

Change code to use the secondsToClock function in utils.lua
This commit is contained in:
Steve AB7PA 2021-05-05 20:20:29 -07:00 committed by GitHub
parent 209f9dc3f9
commit 8ef6e56925
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -376,7 +376,7 @@ end
function model.getUptime() function model.getUptime()
local mynix=nixio.sysinfo() local mynix=nixio.sysinfo()
local upsecs=mynix['uptime'] local upsecs=mynix['uptime']
return upsecs return secondsToClock(upsecs)
end end