@slametps Thank You
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-RandomQuranAyah
@slametps Alhumdulillah, actually worked! Is there any way to change the translation beside en.yusufali in english. Also, my arabic font is different from your screenshot. How do I get your arabic font? Thank you so much!
-
RE: MMM-RandomQuranAyah
@slametps I took the character off but still something wrong
/* 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 = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" 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: 12, units: "imperial", modules: [ { module: 'MMM-RandomQuranAyah', position: 'top_bar', config: { apiVersion: '1.0' showArabic: true, showTranslation: true, surahArabicName:false, translationLang:'id.indonesian', updateInterval: 3600 * 1000, } }, { module: "alert", }, { 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: "Dallas", locationID: "4684888", //ID from http://www.openweathermap.org/help/city_list.txt appid: "private", } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "Dallas", locationID: "4684888", //ID from http://www.openweathermap.org/help/city_list.txt appid: "", } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" }, { title: "ESPN", url: "http://www.espnfc.com/english-premier-league/23/rss" } ], showSourceTitle: true, showPublishDate: true } }, { module: 'MMM-GoogleMapsTraffic', position: 'top_left', config: { key: '', lat: 33.033184, lng: -96.625225, height: '350px', width: '400px', } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}
-
RE: MMM-RandomQuranAyah
@slametps I’m a noob at this but this is the log on my terminal:
> magicmirror@2.1.3 start /home/pi/MagicMirror > sh run-start.sh Starting MagicMirror: v2.1.3 Loading config ... WARNING! Could not validate config file. Please correct syntax errors. Starting with default configuration. Loading module helpers ... Initializing new module helper ... Module helper loaded: updatenotification No helper found for module: helloworld. All module helpers loaded. Starting server on port 8080 ... Server started ... Connecting socket for: updatenotification Sockets connected & modules started ... Launching application.
-
RE: MMM-RandomQuranAyah
@slametps Tried that but still didn’t load up magic mirror
-
RE: MMM-RandomQuranAyah
@slametps I tried setting up this module put it doesnt allow my magic mirror to work. I downloaded the module, put the config in my config.js and got a failed config. I put it in jshint and found nothing. Below is my config. Please help. Thank You.
modules: [ { module: 'MMM-RandomQuranAyah', position: 'top_bar', config: { apiVersion: '1.0' / showArabic: true, showTranslation: true, surahArabicName:false, translationLang:'id.indonesian', updateInterval: 3600 * 1000, } }, { module: "alert", }, { module: "updatenotification", position: "top_bar", }, { module: "clock", position: "top_left", },
-
RE: MMM-GoogleMapsTraffic
@Sean Thank you so much! Finally, after toiling away at it, with your help, I got it to work. Next up, your calendar module!
-
RE: MMM-GoogleMapsTraffic
@vicmora Hi, I’ve been trying for the past week to get your module to work on my magic mirror. The closest I’ve gotten is getting my magic mirror to boot up with the default modules with no google maps traffic module showing. I used npm start dev to see the console it and it looked perfectly fine, saying that it had launched. I’ve tried placing the module in different places in the config. Below is my config, I’ve put it both at the beginning and end of this config. Please let me know which place to put it and how to fix the issue. Thanks!
/* 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 = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" 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: 12, units: "imperial", modules: [ { module: 'MMM-GoogleMapsTraffic', config: { key: 'i have this', lat: 37.8262306, lng: -122.2920096, height: '300px', width: '300px' } } ] }, { 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: "Dallas", locationID: "4684888", //ID from http://www.openweathermap.org/help/city_list.txt appid: "private", } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "Dallas", locationID: "4684888", //ID from http://www.openweathermap.org/help/city_list.txt appid: "private", } }, { 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 } }, { module: 'MMM-GoogleMapsTraffic', config: { key: 'I have this', lat: 37.8262306, lng: -122.2920096, height: '300px', width: '300px', } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}
-
RE: Third Party Modules Don't Work Please Help
@Sean I made those changes, but my magic mirror is working but not displaying that module.