9 lines
230 B
Lua
9 lines
230 B
Lua
function onAlarm()
|
|
net:getText("https://api.blockchain.info/ticker")
|
|
end
|
|
|
|
function onNetworkResult(result)
|
|
local price = json:getValue(result, "object object:USD string:last")
|
|
ui:showText("BTC = "..price.." USD")
|
|
end
|