Read the statement by Michael Teeuw here.
Touchscreen Family Dashboard
-
@mdiorio you can change back to x11 using the raspi-config app
-
@sdetweil Why would I change back when my code works with the current version. General concept MM should be don’t require a crap ton of customization just to make it work. Making users who may want to use this switch to a different windowing system doesn’t really make sense. Especially since I’m sure RPi will eventually remove X11.
-
@mdiorio because it is new and not working in many cases yet
if you want it to work now, your only choice is to move back
you said your code does not work, touch doesnt
-
Hi all. Back after Xmas break. I’m still very new to this and not entirely sure where to begin. Before Xmas I tried downloading the files provided (thanks!) but can’t get it to work. Any chance of a noob walkthrough or a link to somewhere that will tell me how to add the modules and get a working touch calendar? Thanks!
-
-
@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 backwardand second thing uncomment:
// this.sendNotification(‘CX3_GLANCE_CALENDAR’, payload);After this changes changing calendar start working with touch.