22 lines
848 B
Lua
22 lines
848 B
Lua
function onAlarm()
|
|
net:getText("https://api.covid19api.com/summary")
|
|
end
|
|
|
|
function onNetworkResult(result)
|
|
local new = json:getValue(result, "object object:Global int:NewConfirmed")
|
|
local total = json:getValue(result, "object object:Global int:TotalConfirmed")
|
|
local newDeaths = json:getValue(result, "object object:Global int:NewDeaths")
|
|
local totalDeaths = json:getValue(result, "object object:Global int:TotalDeaths")
|
|
|
|
ui:showLines({
|
|
"Disease: total = "..comma_value(total).." new = "..comma_value(new),
|
|
"Deaths: total = "..comma_value(totalDeaths).." new = "..comma_value(newDeaths)
|
|
})
|
|
end
|
|
|
|
function comma_value(n) -- credit http://richard.warburton.it
|
|
local left,num,right = string.match(n,'^([^%d]*%d)(%d*)(.-)$')
|
|
return left..(num:reverse():gsub('(%d%d%d)','%1,'):reverse())..right
|
|
end
|
|
|