AP_Scripting: add button example script

This commit is contained in:
Peter Hall 2019-12-23 23:23:21 +00:00 committed by WickedShell
parent f5052b68a8
commit 67bfedd845

View File

@ -0,0 +1,26 @@
-- This script is an example button functionality
local button_number = 1 -- the button numbber we want to read, as deffined in AP_Button
local button_active_state = true -- the 'pressed' state of the button
local last_button_state
function update() -- this is the loop which periodically runs
local button_new_state = button:get_button_state(button_number) == button_active_state
-- the button has changes since the last loop
if button_new_state ~= last_button_state then
last_button_state = button_new_state
if button_new_state then
gcs:send_text(0, "LUA: Button pressed")
else
gcs:send_text(0, "LUA: Button released")
end
end
return update, 1000 -- reschedules the loop (1hz)
end
return update() -- run immediately before starting to reschedule