Well, I tried and failed. I added the entries to the MMM-GoogleCalendarEventAdder module js file and not only did it not work, but it made the event adder disappear. I’m so lost but I’ll keep trying til I get it right.
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
B
Offline
Latest posts made by blt791
- 
RE: MMM-Keyboard setup
 - 
RE: MMM-Keyboard setup
@sdetweil thank you for your quick response. Fingers crossed I do this right
 - 
MMM-Keyboard setup
Having a bit of difficulty getting this virtual keyboard running on my setup. I guess I’m not fully understanding so I thought I would ask instead of continuing to struggle. Do the following entries need to be added to the js file of every module that I want to use the keyboard in or is there a way to have a universal blanket entry somewhere?
this.sendNotification(“KEYBOARD”, {
key: “uniqueKey”,
style: “default”
});this.sendNotification(“KEYBOARD_INPUT”, {
key: “uniqueKey”,
message: “test”
});notificationReceived : function (notification, payload) {
if (notification == “KEYBOARD_INPUT” && payload.key === “uniqueKey”) {
console.log(payload.message);
}
},