9 lines
211 B
Lua
9 lines
211 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")
|
|
ui:showText(joke)
|
|
end
|