Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
void cancelTimer(msTimer t); // from 1 void cancelTimer(timer t); // from 2
void msTimer::cancel();
variables { msTimer takt; message 100 data = {dlc = 1, byte(0) = 0xFF, dir = Tx}; } on Timer takt { output(data); setTimer(takt, 200); } on key F1 { cancelTimer(takt); // cancel timer write("canceled"); } on key F2 { setTimer(takt, 200); // set timer to 200ms write("start"); }