Open Tomsi05 opened 3 months ago
Any ideas? Would help me a lot
Apologies, for some reason I didn't get a notification! If you still need help, do you see anything in the logs? If so please post the log file
Hey, I have the same bar with the newest version of MM.
[2024-10-07 15:34:13.219] [LOG] MMM-GPIO-HANDLER: Registering output pin: 23 for Heater [2024-10-07 15:34:13.222] [LOG] MMM-GPIO-HANDLER: Registering output pin: 24 for Ledstrip warm [2024-10-07 15:34:13.223] [LOG] MMM-GPIO-HANDLER: Registering output pin: 25 for Ledstrip cool [2024-10-07 15:34:13.224] [LOG] MMM-GPIO-HANDLER: All pins in configuration are registered.
Everything gets registered successfully but the bar does not disappear.
Seems to be an alert:
@Kannix2005. Which way do you start the magicmirror? using npm or pm2? Could you provide the config file and the complete logs?
First of all, thank you for publishing that module. I've searched a long time to find it, but it seems to be exactly what I need.
I got a relais connected to Pin 11 (GPIO17) on my RaspberryPi 4. I only want it to toggle state after a notification. The problem is, when I start the MagicMirror, a weird bar appears in the middle and the background blurs (picture). When I delete the module part in config, it starts normally.
Do you have any idea what the problem is? Thanks a lot!
here is my config, the GPIO-HANDLER part is at the bottom.
`/ Config Sample
config.js.template
file instead ofconfig.js
config.js
while starting. For more informationsee https://docs.magicmirror.builders/configuration/introduction.html#enviromnent-variables */ let config = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "0.0.0.0", "::" to listen on any interface // Default, when address config is left out or empty, is "localhost" port: 8080, basePath: "/", // The URL path where MagicMirror² is hosted. If you are using a Reverse proxy // you must set the sub path here. basePath must end with a / ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
useHttps: false, // Support HTTPS or not, default "false" will use HTTP httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true
language: "en", locale: "en-US", logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging timeFormat: 24, units: "metric",
modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left",
] };
/ DO NOT EDIT THE LINE BELOW / if (typeof module !== "undefined") { module.exports = config; } `