Files
aiolauncher_scripts/icndb-widget.lua
2021-07-29 07:51:07 +03:00

9 lines
212 B
Lua

function onAlarm()
net:getText("http://api.icndb.com/jokes/random")
end
function onNetworkResult(result)
local joke = json:getValue(result, "object object:value string:joke")
aio:showText(joke)
end