lol thank you guys i should have thought of it but idk why it just slipped my mind i followed and i thought hmmm i need to close i think ahah…thanks i love this forum and all the help here.
Read the statement by Michael Teeuw here.
Latest posts made by pflnpi0305
-
RE: Creating a module to display daily horoscopes
-
RE: Creating a module to display daily horoscopes
thats the issue it doesnt exsist in there… how do i clone the git via ssh
-
RE: Creating a module to display daily horoscopes
so i also dropped my config in jshint.comand and javascriptbeautifier.com and all is well…i dont know what im missing. if i remove the horoscope everything works well but if i have it then it wont work.
var config = { port: 8080, ipWhitelist: [ "127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.1/24" ], language: "en", timeFormat: 12, units: "imperial", modules: [ { module: "MMM-Admin-Interface" }, { module: "alert" }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "calendar", header: "MY CALENDAR", position: "top_left", config: { fetchInterval: 1 * 60 * 1000, calendars: [ { symbol: "calendar-check-o ", url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics" }, { url:"https://calendar.google.com/calendar/ical/5ddp1drsb3mib0a6piof8h0f8s%40group.calendar.google.com/private-xxxxxxxxxxxxxxx/basic.ics" } ] } }, { module: "compliments", position: "lower_third" }, { module: "currentweather", position: "top_right", config: { units: "imperial", location: "FONTANA/CA", locationID: "", appid: "xxxxxxxxxxxxxx" } }, { module: "MMM-Remote-Control" }, { module: "MMM-WunderGround", position: "top_right", config: { apikey: "xxxxxxx", pws: "CA/FONTANA", hourly: "1", fctext: "1", fcdaycount: "5", fcdaystart: "0", hourlyinterval: "3", hourlycount: "2", alerttime: 10000, alerttruncatestring: "english:", roundTmpDecs: 1, UseCardinals: 0, layout: "horizontal", sysstat: 0 } }, { module: "MMM-Globe", position: "center", config: { style: "geoColor", imageSize: 300, ownImagePath: "", updateInterval: 10 * 60 * 1000 } }, { module: "MMM-horoscope", position: "bottom_right", config: { sign: "aries" } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "Google News", url: "https://news.google.com/news?cf=all&hl=en&pz=1&ned=us&output=rss" }, { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" }, { title: "BBC Sci-Tech", url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk" } ], showSourceTitle: true, showPublishDate: true, maxNewsItems: 0, updateInterval: 10 * 1000, reloadInterval: 2 * 60 * 1000 } } ] }; if ("undefined" !== typeof module) module.exports = config;
-
RE: Creating a module to display daily horoscopes
so i fixed it and added it the the java beautifier link and thenadded it back to my config.js folder and rebootbut still black screen.
cant use npm start
is it because im using pm2 to autostart my mirror? -
RE: Creating a module to display daily horoscopes
i add this and get black screen only when i add the horoscope. maybe i dont know hot to install it lol. am i doing something wrong? any help is appreciated.
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", ], language: 'en', timeFormat: 12, units: 'imperial', modules: [ { module: 'alert', }, { module: "updatenotification", position: "top_bar" }, { module: 'clock', position: 'top_left' }, { module: 'calendar', header: 'MY CALENDAR', position: 'top_left', config: { fetchInterval: 1 * 60 * 1000, calendars: [ { symbol: 'calendar-check-o ', url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics' }, { url: 'https://calendar.google.com/calendar/ical/5ddp1drsb3mib0a6piof8h0f8s%40group.calendar.google.com/private-xxxxxxxxxxxxxxx' } ] } }, { module: 'compliments', position: 'lower_third' }, { module: 'MMM-horoscope', position: 'bottom_right', config: { sign: 'aries', // Zodiac sign } }, { module: 'currentweather', position: 'top_right', config: { units: 'imperial', location: '', locationID: '', //ID from http://www.openweathermap.org appid: 'xxxxxxxxxxxxxxxx' } }, { module: 'MMM-Remote-Control' }, { module: 'MMM-WunderGround', position: 'top_right', config: { apikey: 'xxxxxxxxxxxxxxxx', // private; don't share! pws: 'CA/FONTANA', hourly: '1', fctext: '1', fcdaycount: "5", fcdaystart: "0", hourlyinterval: "3", hourlycount: "2", alerttime: 10000, alerttruncatestring: "english:", roundTmpDecs: 1, UseCardinals: 0, layout: "horizontal", sysstat: 0 } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Google News", url: "https://news.google.com/news?cf=all&hl=en&pz=1&ned=us&output=rss" }, { title: "New York Times", url: "http://www.nytimes.com/services /xml/rss/nyt/HomePage.xml" }, { title: "BBC Sci-Tech", url: "http://feeds.bbci.co.uk/news/video_and_audio/technology/rss.xml?edition=uk" } ], showSourceTitle: true, showPublishDate: true, maxNewsItems: 0, updateInterval: 10 * 1000, reloadInterval: 2 * 60 * 1000 } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') {module.exports = config;}
-
RE: MMM-horoscope - daily horoscope
cant get mine to work, after i add this i get black screen. any help is appreciated
-
RE: Calendar not showing added items
can you post your config code i tried to change value to 2 mins but no luck. thanks in advanced