Browse Source

AP_Scripting: add simple example of a loop

master
Peter Barker 5 years ago committed by Peter Barker
parent
commit
099379713c
  1. 8
      libraries/AP_Scripting/examples/simple_loop.lua

8
libraries/AP_Scripting/examples/simple_loop.lua

@ -0,0 +1,8 @@
-- This script is an example of saying hello. A lot.
function update() -- this is the loop which periodically runs
gcs:send_text(0, "hello, world") -- send the traditional message
return update, 1000 -- reschedules the loop
end
return update() -- run immediately before starting to reschedule
Loading…
Cancel
Save