top of page
This program will display the Wifi signal strength received by the JackBord.
it will do 100 runs and then stop. It uses the /s_wifisig system variable to get the Wifi signal strength.
Program
---
Simple Wifi Signal Program
This program will display the Wifi signal strength
received by the JackBord.
it will do 100 runs and then stop.
It uses the /s_wifisig system variable to get the
Wifi signal strength.
---
prog_vars =
d/run_no 0
prog_vars.
prog_start =
"Wifi Signal Program"
prog_start.
prog_loop =
-- Display the Wifi Signal Strength
"Run /run_no Wifi signal /s_wifisig"
-- Exit after 100 runs
inc /run_no
any /run_no >= 100 ->
"Run /run_no Time to Exit"
exitprog
enda.
prog_loop.
prog_stop =
print "Prog STOPPED!"
prog_stop.
bottom of page