@MMRIZE, thank you for catching those gesture name errors and giving my another example. I FINALLY GOT IT :)
{
module: "MMM-Touch",
position: "bottom_bar",
disabled: false,
config: {
debug: false,
useDisplay: false,
autoMode: false,
defaultMode: "default",
gestureCommands: {
"default":{
"TAP_1": (commander) => {commander.sendNotification("USER_PRESENCE", true);},
"SWIPE_LEFT_1": (commander) => {commander.sendNotification("PAGE_DECREMENT", null);},
"SWIPE_RIGHT_1": (commander) => {commander.sendNotification("PAGE_INCREMENT", null);},
},
},
}
},
I tried to change things systematically to determine what truly made it start working was the addition of payload after “USER_PRESENCE” and oddly enough adding semicolons at the end of each gesture command.
Hopefully this thread can help someone else down the line :)