@elwood1982uk Hi, I’ve got similar problem with touch callendar. I’ve made two changes in https://github.com/B3DTech/MMM-KeyPress module.
In node_helper.js:
step: (direction === “ArrowRight” ? 3 : -3) // 1 to move forward, -1 to move backward
to:
step: (direction === “ArrowRight” ? 1 : -1) // 1 to move forward, -1 to move backward
and second thing uncomment:
// this.sendNotification(‘CX3_GLANCE_CALENDAR’, payload);
After this changes changing calendar start working with touch.