diff options
| author | Selene ToyKeeper | 2017-09-10 02:37:39 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2017-09-10 02:37:39 -0600 |
| commit | d4a3e889ec53155a913763a52fd4a82bee14d95c (patch) | |
| tree | 2a2941b2e4ff02ef27a65b29cdb1f1328eccb3d3 /spaghetti-monster/fsm-events.h | |
| parent | Adjusted thermal regulation based on results of some handheld runtime tests. (diff) | |
| download | anduril-d4a3e889ec53155a913763a52fd4a82bee14d95c.tar.gz anduril-d4a3e889ec53155a913763a52fd4a82bee14d95c.tar.bz2 anduril-d4a3e889ec53155a913763a52fd4a82bee14d95c.zip | |
Moved strobes from 5 clicks to "click, click, long-click".
Moved momentary mode from 6 clicks to 5 clicks.
Diffstat (limited to 'spaghetti-monster/fsm-events.h')
| -rw-r--r-- | spaghetti-monster/fsm-events.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/spaghetti-monster/fsm-events.h b/spaghetti-monster/fsm-events.h index c77facd..074b459 100644 --- a/spaghetti-monster/fsm-events.h +++ b/spaghetti-monster/fsm-events.h @@ -166,6 +166,25 @@ Event EV_click3_press[] = { A_RELEASE, A_PRESS, 0 }; +Event EV_click3_hold[] = { + A_PRESS, + A_RELEASE, + A_PRESS, + A_RELEASE, + A_PRESS, + A_HOLD, + 0 }; +/* +Event EV_click3_hold_release[] = { + A_PRESS, + A_RELEASE, + A_PRESS, + A_RELEASE, + A_PRESS, + A_HOLD, + A_RELEASE, + 0 }; + */ Event EV_click3_release[] = { A_PRESS, A_RELEASE, @@ -402,6 +421,8 @@ EventPtr event_sequences[] = { #endif #if MAX_CLICKS >= 3 EV_click3_press, + EV_click3_hold, + //EV_click3_hold_release, EV_click3_release, EV_click3_complete, #endif |
