@mykle1
Just found your guide: https://forum.magicmirror.builders/topic/5274/how-to-manually-install-mm-on-your-pi-for-absolute-beginners
Going at it now and see if it works - thanks for the patience and writing that guide!
@mykle1
Just found your guide: https://forum.magicmirror.builders/topic/5274/how-to-manually-install-mm-on-your-pi-for-absolute-beginners
Going at it now and see if it works - thanks for the patience and writing that guide!
{
module: "weather",
position: "top_right",
config: {
type: "forecast",
units: "metric",
roundTemp: "true",
degreeLabel: "true",
showPrecipitationProbability: "true",
colored: "true",
apiVersion: "3.0",
lat: "123.123123",
lon: "321.321312",
apiKey: "abcdefg",
},
},
That still results in no display of the weather module :/
Can you please write me the code? I am seriously going mental over “not having anything loading” to “no config file” to just partially loading things…
This is really frustrating when you got 0 clue about coding to not figure out where the heck the issue is… ._.
This code doesnt create a missing config file but doesnt load the module. If i just enter the weather module (without config) it loads but only shows the current weather, but i would like to get the forecast for my region with the current API Version which is apparently 3.0
{
module: "weather",
position: "top_right",
config: {
// See 'Configuration options' for more information.
type: "forecast",
units: "metric",
roundTemp: true,
degreeLabel: true,
showPrecipitationProbability: true,
colored: true,
apiVersion: 3.0,
lat: 123123,
lon: 312321,
apiKey: "asdasdasd123123asedasd123",
},
},