Add program to perform action group at node.

This commit is contained in:
Anna Rose 2021-08-18 04:43:45 -04:00
parent 5a1e297977
commit ea90d0b22c

17
prog/nodeaction.ks Normal file
View File

@ -0,0 +1,17 @@
// Perform some action (AG1) at the maneuver node.
@lazyglobal off.
set done to false.
if not HASNODE {
print "Create a node to initiate NodeAction mode.".
wait until HASNODE.
}
when NEXTNODE:ETA < 1 then {
AG1.
set done to true.
}
wait until done.