Read the statement by Michael Teeuw here.
Touchscreen Family Dashboard
-
@mdiorio electron still will provide touch events provided the underlying screen service does…
did you change OS levels since it last appeared to work?
they have changed the window manager twice in the last year.
Original was X11
last year introduced Wayland
this Oct introduced Labwc -
@sdetweil said in Touchscreen Family Dashboard:
did you change OS levels since it last appeared to work?
First time I’m using it is this week, so it would appear I’m using labwc.
All I know is that the old KeyPress module wasn’t working and doing a console debug in electron was showing no touchevents being sent, only pointer events.
-
@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.