David Blume's GitList
Repositories
dxb_channel.git
Code
Commits
Branches
Tags
Search
Tree:
02a7bf6
Branches
Tags
main
dxb_channel.git
components
testtask.brs
Run the test code again with each OK button press.
David Blume
commited
02a7bf6
at 2020-03-07 22:37:16
testtask.brs
Blame
History
Raw
sub init() m.top.functionName = "executeTest" end sub function executeTest() as void ' This task gets run one at the start, and then ' again every time the OK button is pressed. deviceInfo = CreateObject("roDeviceInfo") aaConnectionInfo = deviceInfo.GetConnectionInfo() for each key in aaConnectionInfo val = aaConnectionInfo[key] m.top.updateText = key + " = " + val.ToStr() end for end function