Just figured I would let you know. I nixed the openmapweather mmm, and found a way to get the default current weather module working AND displaying a New York header. Thanks again for the support.
Read the statement by Michael Teeuw here.
Posts
-
RE: Header missing for Current weather (MMM_OpenMapWeather)
-
RE: Header missing for Current weather (MMM_OpenMapWeather)
Thank you so much for your time. Doing research on this, I never see a header on the openmapweather mmm. Only with the default current weather module is there a header.
Perhaps I should investigate why the default current weather mmm wont work. Thanks again for your help
-
RE: Header missing for Current weather (MMM_OpenMapWeather)
@nneuland https://forum.magicmirror.builders/assets/uploads/files/1616691041491-weather_header.png
To clarify. I am looking to include “Atlanta” header
only New York
-
RE: Header missing for Current weather (MMM_OpenMapWeather)
Thank you so much for the reply. I’m a bit confused myself.
I was having issues getting the default weather modules to work. More specifically, the current weather module. The default weather forecast module works beautifully. I have added the OpenMapWeather module to my config.js and I now have current weather displayed. However, I would like to add a header to this module. Unfortunately, I have tried your suggestions with no luck(assuming I did them correctly). Here is my js file for reference if you have a second to look at it.Here is the weather portion config containing my weather modules
{
module: “MMM-OpenmapWeather”,
position: “top_right”, // This can be any of the regions.
// Best results in left or right regions.
config: {
// See ‘Configuration options’ for more information.
location: “New York,USA”,
locationID: “5128581”, //Location ID from http://openweathermap.org/help/city_list.txt
appid: “xxxxxxxx”, //openweathermap.org API key
colorIcon: false
}
},
{
module: “weatherforecast”,
position: “top_right”,
header: “Weather Forecast”,
config: {
location: “New York”,
locationID: “5128581”, //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
appid: “xxxxxxxxxxx”
}
},It’s a small thing, but driving me crazy. Really appreciate you taking the time to deal with a noob.
-
Header missing for Current weather (MMM_OpenMapWeather)
Incredibly new to coding but really enjoying the process of compiling a magic mirror on a raspberry pi4.
For the most part it’s been pretty smooth sailing aside from a few small things.
One of the issues I’ve been having was with the default current weather app. Weather forecast works great. But not the current weather.
I found that the MMM-Openmapweather module works great in place of it. However, with the OpenmapWeather module,
there isn’t a header for the city above the current weatherCan anyone assist me with amending a header to this module?