@cowboysdude Awesome, thanks!
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-NOAA - Another Weather Module
I believe the last version had some toggles in the config which were quite nice to have, which is why I am asking if it’s there now. I took a quick look at the code, and wasn’t able to find anything like it.
I would prefer not to mess with CSS files, because it would mean that updates might break my config.
-
RE: MMM-NOAA - Another Weather Module
Finally updated the module, and I like the new look. However, I was wondering if there’s a toggle to hide the “Forecast” piece.
-
RE: How can I see the HTML that being generated?
@Mykle1 Thanks! I was missing the address from config.
-
RE: How can I see the HTML that being generated?
@Mykle1 Thanks, I will try to get the web server working. Right now, it’s not responding. I tried adding “::ffff:192.168.1.1/120” and my exact ip address. I am just getting “unable to connect”
-
RE: How can I see the HTML that being generated?
-
RE: How can I see the HTML that being generated?
I am trying to mess with CalendarExt, but I didn’t think that matters.
Doesn’t every module basically output HTML? I am thinking of something like hitting F12 to go into debug mode in a browser and then being able to view the DOM. -
How can I see the HTML that being generated?
I am trying to modify an existing module. In order to understand it, I would like to see the underlying HTML. Is there a simple way of doing that besides reading the code?
-
RE: MMM-CalendarExt
Thank you for a great module! I second @Vauxdvihl about only wanting see the the current week, plus the next 3. Google calendar has that feature. Basically, a clone of the month view, but not starting from the 1st of the month, but from the first day of the current week.
I tried doing what you suggested with using daily and 28 and it’s close to what I want. But I am only seeing 6 per row. What do I need to modify to make sure I am seeing 7 days?
Also, is there a way to completely remove the icon and the space for it? I don’t see it in any on the defined styles. I would prefer to have a little more extra breathing room on my fairly narrow monitor.
Again, thanks for a great module!
-
Can't get weatherforecast to work
I finally got my magic mirror built and mounted. But, the weather forecast module isn’t working. The current weather module works just fine, but the forecast isn’t loading. Any ideas? Here’s my config.js file
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. * * For more information how you can configurate this file * See https://github.com/MichMich/MagicMirror#configuration * */ var config = { port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"], language: "en", timeFormat: 24, units: "metric", modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "calendar", header: "US Holidays", position: "top_left", config: { calendars: [ { symbol: "calendar-check-o ", url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics" } ] } }, { module: "compliments", position: "lower_third" }, { module: "currentweather", position: "top_right", config: { location: "New York", locationID: "4363990", //ID from http://www.openweathermap.org/help/city_list.txt appid: "59540................." } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "New York", locationID: "4363990", //ID from http://www.openweathermap.org/help/city_list.txt appid: "59540........." } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" } ], showSourceTitle: true, showPublishDate: true } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}