I have a question about the forum in general. Can you create a personal favorites list with forum posts so that you can read some of what you have found. Unfortunately I did not find this function. thank you
Read the statement by Michael Teeuw here.
Posts
-
Personal favorites list with forum posts
-
RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3
Hal leider nich geklappt:confused_face:
-
RE: Hide Rain-Modul with MMM-Alexa-Control and MMM-Remote-Control
OK
I read your post again carefully and have now understood it
and it works.
Many thanks -
RE: Hide Rain-Modul with MMM-Alexa-Control and MMM-Remote-Control
Ok, I have now entered that
{ module: 'MMM-AlexaControl', position: 'bottom_left', config:{ image: false, pm2ProcessName: "mm", refresh: true, restart: true, reboot: false, monitorToggle: true, vcgencmd: 'vcgencmd', deviceName: "Spiegel", startPort: 12000, notifications: [ { name: 'Radar', port: 12101, OnOff: true, notification: [["NOTIFICATION ON", "SHOW_RADAR"],["NOTIFICATION OFF", "HIDE_RADAR"]] } ] } },
Alexa also finds a device but I can’t control it
What would I have to enter with notificaton and with PayloadOr am I not allowed to change the payload
-
RE: Hide Rain-Modul with MMM-Alexa-Control and MMM-Remote-Control
I don’t know what you mean by costum device
Can you give me a code example or can I do it like thatnotifications: [ { name: 'Notification 2', port: 11101, OnOff: true, notification: [["NOTIFICATION ON", "PAYLOAD ON"],["NOTIFICATION OFF", "PAYLOAD OFF"]] } ]
Then the question what does a notification and a payload look like in my case
I got this example from the Githup Homepage with the MMM-Alexa control module
-
Hide Rain-Modul with MMM-Alexa-Control and MMM-Remote-Control
Hello
I have a question about the Alexa Control Module:
I am using the remote module and the Alexa control module.
I would like to show the RainRadar module and hide what works with the remote module.
There is a code in the rain module///// Add this function to the modules you want to control with voice ////// notificationReceived: function (notification, payload) { if (notification === 'HIDE_RADAR') { this.hide (1000); } else if (notification === 'SHOW_RADAR') { this.show (1000); } }, })
I would like to know where to insert this code in the config
and whether I can take it over because of the syntaxI would be grateful for help
-
RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3
Hallo Gemeinde
Hat jemand schon Erfahrung wie man mit dem Alexa Control Modul den Rain Radar ein und ausblenden lassen kann.
Ich habe wohl einen Code:///// Add this function to the modules you want to control with voice ////// notificationReceived: function (notification, payload) { if (notification === 'HIDE_RADAR') { this.hide(1000); } else if (notification === 'SHOW_RADAR') { this.show(1000); } }, });
Ich hab das mal so probiert aber da Startet min MM nicht und ich bekommen den Scriptfehler Hinweis:
{ module: 'MMM-AlexaControl', position: 'bottom_left', config:{ image: false, pm2ProcessName: "mm", refresh: true, restart: true, reboot: false, monitorToggle: true, vcgencmd: 'vcgencmd', deviceName: "Spiegel", startPort: 12000, notificationReceived: function (notification, payload) { if (notification === 'HIDE_RADAR') { this.hide(1000); } else if (notification === 'SHOW_RADAR') { this.show(1000); } } },
-
RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3
Ok danke für die schnelle Antwort bezüglich der Erklärung des “dateheaders”
jetzt erschein das auch logisch.
Aber die Sache mit der Änderung in der calendar.js wäre ich dankbar. -
RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3
P.S.
Ich weis leider nicht was "dateheaders"bei timeFormat bewirkt -
RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3
@lavolp3 Die Readme habe ich schon mal gelesen.
Ich hatte “timeFormat” in der config.js schon auf absolute gesetzt und in der calendar.js das Format geändert sihe hier:Module.register("calendar", { // Define module defaults defaults: { maximumEntries: 10, // Total Maximum Entries maximumNumberOfDays: 365, displaySymbol: true, defaultSymbol: "calendar", // Fontawesome Symbol see https://fontawesome.com/cheatsheet?from=io showLocation: false, displayRepeatingCountTitle: false, defaultRepeatingCountTitle: "", maxTitleLength: 25, maxLocationTitleLength: 25, wrapEvents: false, // wrap events to multiple lines breaking at maxTitleLength wrapLocationEvents: false, maxTitleLines: 3, maxEventTitleLines: 3, fetchInterval: 5 * 60 * 1000, // Update every 5 minutes. animationSpeed: 2000, fade: true, urgency: 7, timeFormat: "absolute", dateFormat: "Do MM YY", dateEndFormat: "LT", fullDayEventDateFormat: "Do MM YY", showEnd: false, getRelative: 6, fadePoint: 0.25, // Start on 1/4th of the list. hidePrivate: false, hideOngoing: false, colored: false, coloredSymbolOnly: false, tableClass: "small", calendars: [
Das Format hat sich auch erfolgreich geändert.
Nun möchte ich aber erst das Symbol, dann das Datum und dann den Calendereintrag (z.B. Arztbesuch) anzeigen lassen.
Bisher war erst das Calender Symbol dann kam der Termin und dann das Datum.
Wo kann mann die Rheinfolger festlegen.Danke