I want to have a powerwall, a solar panel and a tesla just to try out this module!
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Powerwall
-
RE: Gosund SP111
@lordhelix I have again increased debugging output.
Please update the module again and report back on github.
Thanks! -
RE: Gosund SP111
@lordhelix we should track this on github to not spam here, can you please open an issue?
I’m currently out of ideas, but will follow up on github. I need your input to see that my module works for others :-) -
RE: how to make just 1 module bigger?
@aarish you can reference every module as a css element using its name as class.
in this case it is.calendarin custom.css
.calendar { width: 500px; height: xxxpx; }But note that all other modules are automatically set with
width: 100%so will adept their width… -
RE: Positions not working
npm ERR! Error: EACCES: permission denied, access ‘/usr/lib/node_modules/npm/node_modules/graceful-fs’
npm ERR! { [Error: EACCES: permission denied, access ‘/usr/lib/node_modules/npm/node_modules/graceful-fs’]npm itself is often installed with sudo priviledge (like here, hence “permission denied”).
Therefore you’d need to dosudo npm install -g npm -
RE: Gosund SP111
@lordhelix what is your mqtt configuration in the devices? Especially the telemetry interval? It seems you see a message that power state has changed but no state and power data that gets distributed in intervals. Have you waited long enough?
-
RE: Gosund SP111
@lordhelix Can you please do a
git pulland do the whole thing again (npm start dev)?
I have increased debugging output so we can see the data that has been transferred to the module.Thank you!
-
RE: Gosund SP111
@lordhelix you have the mirror running via pm2 already.
You need to dopm2 stop all npm start dev -
RE: Make Mirror brighter through custom.css
@simphi yeah you can include these items in custom.css and play with them
.dimmed { color: #ccc; } .normal { color: #eee; } .bright { color: #fff; }Color: #fff is white. You could also write it as #ffffff.
#eee or #eeeeee is a very light grey. -
RE: Gosund SP111
@lordhelix updateinterval is the interval for an update of the module DOM in ms, so 60 seconds. Can not be the source of error.
-
RE: Gosund SP111
@lordhelix what models have you flashed?
If the broker runs on the pi, i guess you should usehttp://localhost:1883as host.
Also try to setdebug: truein your config, start the mirror withnpm start devand have a look at the console messages. -
RE: MMM-DWD-WarnWeather - Wetterwarnungen
@Baraka The warnCellID needs to start with an 8 (I think!).
Try this one

Frankfurt/Main may result in an error because of the
/I’m not sure about that. -
RE: weather forecast and current weather modules
@hango this way you’ll always have problems updating the respective modules. You would have to reset all of your local changes and fill them in after an update.
How do you deal with that?
-
RE: Daily Dilbert - can I make smaller and in color?
@blacter have a look at my MMM-Comics module.
You can change size and colour there. Also includes Dilbert -
RE: MMM-DWD-WarnWeather - Wetterwarnungen
@Baraka can you post your config entry?
-
RE: MMM-DWD-WarnWeather - Wetterwarnungen
@Baraka I have already pushed a new pr. There was a tiny but important error in my last one.
you can do me favor in testing it by changing in node_helper.js the term “NAME” to “KURZNAME” in line 52.
That should hopefully work. -
RE: MMM-DWD-WarnWeather - Wetterwarnungen
@killing-joke I have just released a PR that should solve this :-)
There has apparently been a change in naming in the API. -
RE: SSH Tutorial
@sdetweil said in SSH Tutorial:
but u can’t run headless AND have MM on it… (unless in serveronly mode)
yeah you got me it’s not really headless.
I set up the pi on my laptop, start it and install the mirror via ssh already. So I don’t have to attach a keyboard to the pi. -
RE: How to display FontAwesome Icons in default Calendar Module Entrys
@SaltyRiver You could use the “replace” function of the calendar. you are to able to do it the usual font-awesome way (giving the element a class). I guess you would have to work with glyphs. But I’m not common about that.
OR: Just use an emoji. They can be displayed on the mirror.
There should be a 🗑️ emoji somewhere in the net… -
RE: SSH Tutorial
@sdetweil said in SSH Tutorial:
@lavolp3 yeh, tricky crap… just click the buttons (unless u are making 100 of these disks)
it is the best way to run a pi headlessly. I never use the GUI.