@sdetweil That is a good answer:-)
I’m from Germany and my mirror shows 42, the answer to all questions.
@sdetweil That is a good answer:-)
I’m from Germany and my mirror shows 42, the answer to all questions.
@sdetweil I know, but to have a first sense of achievement he will see something different than “LOADING”
@D3dl3g as a first check, you can use my working config-entry and extend it one by one with your needs:
//#################################################################################
{
disabled: false,
module: "weather",
position: "top_right",
header: "Wetter aktuell",
config: {
type: "current",
location: "Bonn",
locationID: "2946447",
apiKey: "myKey",
showWindDirectionAsArrow: true,
showHumidity: true,
showFeelsLike: false
}
},
//#################################################################################
Just replace the apikey.
@N6NG Do you know? The system is case-sensitive:
pm2 stop magicmirror is different to
pm2 stop MagicMirror
@yagger to come back to your first post, I fixed it this way:
added two entries in config.js
//#################################################################################
{
disabled: false,
module: "weather",
position: "top_right",
header: "Wetter aktuell",
config: {
type: "current",
location: "Bonn",
locationID: "2946447",
apiKey: "myKey",
showWindDirectionAsArrow: true,
showHumidity: true,
showFeelsLike: false
}
},
//#################################################################################
{
disabled: false,
module: "weather",
position: "top_right",
header: "Wetter in",
config: {
type: "forecast",
location: "Bonn",
locationID: "2946447",
apiKey: "myKey",
showWindDirectionAsArrow: true,
showHumidity: true,
showFeelsLike: false
}
},
//#################################################################################
first as type current, second as type forecast. The keys are identical…the one I used before.
Leads to this output:
@Robert_K
Nice mirror.
One hint, in your video, you mentioned, that the front-door-cameras refresh every time they are shown resp. the page is displayed. I guess, you use SmartWebDisplay for it? Try to replace it with MMM-iFrame, should no longer flicker at the start of the page.
@mayfield
Your favorite countries appear in the sequence you add them in the config.js:
countries: ["DEU","NLD","PER","FRA","DNK","NOR","SWE","FIN"],
Thomas
Moin @35110, ich bekomme zwar Mecker:
…aber funktioniert trotzdem…
Hast Du einen zweiten Key für weatherforecast? Ich habe den von weaher genommen.
@35110
So
//#################################################################################
{
disabled: false,
module: "weatherforecast",
position: "top_right",
header: "Wettervorhersage",
config: {
location: "Bonn",
locationID: "2946447",
appid: "Hier kommt Dein Key rein"
}
},
//#################################################################################
funktioniert es bei mir.
Hallo @35110
das sollte jetzt ungefähr so aussehen bei Dir:
//#################################################################################
{
disabled: false,
module: "weather",
position: "top_right",
header: "Wettervorhersage",
config: {
location: "Bonn",
locationID: "2946447",
apiKey: "Hier kommt Dein Key rein",
showWindDirectionAsArrow: true,
showHumidity: true,
showFeelsLike: false
}
},
//#################################################################################
Da das ziemlich genau so aussieht wie zuvor, könntest Du einfach den Modulnamen anpassen, aber ACHTUNG: es heißt jetzt “apiKey”!!! Groß- und Kleinschreibung beachten. Der Key selbst sollte noch funktionieren.
…und übrigens, das weather-modul ist schon da, es ist eins der Default-Module.
Thomas