@hriereb As far I see Italian is not supported. You can contribute by adding the italian translation for MMM-NOAA.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-NOAA
-
RE: Problem server client configuration
@akkor I don’t think you can use Hello-Lucy in client mode.
But I bet the developer @Mykle1 knows it. -
RE: MMM-Loxone
@bobbythemoh Hi, I have good news for you, I just pushed a fix. Please update
MMM-Loxone
for it to work again. I also made it a bit faster, I hope your wife will be happy again:smiling_face_with_open_mouth_smiling_eyes:Btw. This issue semes to be related to one of the latest Raspbian updates, I assume its because the new Raspberry Pi has two HDMI outputs, so there may be some changes to the HDMI related code…
-
RE: MMM-NOAA
@hriereb You may try to lint your JSON then -> https://jsonlint.com/
-
RE: Mey's Mirror 1.5m x 0.67m
@meyraa Hey, Mey! Thats a really big and nice mirror! Thanks for sharing your project:thumbs_up:
-
RE: Installing on a Pi Zero
@andyc7687 You need to do the following:
- Clone your forked repository to your local machine
- Adopt
installers/raspberry.sh
to include your Raspberry Pi Zero specific code - Commit and push your changes to Github
- Test it on a Raspberry Pi Zero by execute
bash -c "$(curl -sL https://raw.githubusercontent.com/ac2799/MagicMirror/master/installers/raspberry.sh)"
- Create a Pull Request on the original MagicMirror repository
Just contact me if you need any help, I can also test your changes, I have a spare Raspberry Pi Zero W on hand.
-
RE: MMM-NOAA
@hriereb Btw. I would love to see an upvote on the post that helped you the most:)
-
RE: config,js beginner
Hi @berne welcome on board!
You are editing a
Javascript
file. You can basically use any decent text editor to edit this file, however some will mallform the file. Thats why I recogmend you something like Notepad++, or Visual Studio Code.You just have to add this somewhere in the
modules
array (An array is a list of things)For example:
modules: [ { module: "alert", }, { module: "MMM-NowPlayingOnSpotify", position: "top_right", config: { showCoverArt: false, clientID: "", clientSecret: "", accessToken: "", refreshToken: "" } }, { module: "updatenotification", position: "top_bar" } ]
Note, there must be a
,
character after the last}
if this isn’t the last module. You can easily validate your changes by using a Javascript Linter. -
RE: MMM-NOAA
@core Can you remove
MMM-Fule
from your `config.json. There is an unhandled error with this module. -
RE: config,js beginner
@berne I recomend you to to checkout the structure of the existing
config.js
file.You may also check out the W3Schools documentation: https://www.w3schools.com/js/js_objects.asp