MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. arifms
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    A
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Groups 0

    arifms

    @arifms

    1
    Reputation
    540
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    arifms Unfollow Follow

    Best posts made by arifms

    • RE: Syntax error

      @ strawberry
      Thanks for pointing out the error.
      all working good now.
      @cowboysdude edited the app id’s thanks again for pointing it out.

      Cheers

      posted in Troubleshooting
      A
      arifms

    Latest posts made by arifms

    • MM on ASUS Tinker board

      Has any one tried MM on ASUS tinkerboard?

      posted in Show your Mirror
      A
      arifms
    • RE: Default Calender using ics file from a path on pi.

      @arifms said in Default Calender using ics file from a path on pi.:

      How do i use default calender using my own .ics file from outlook.?
      the ics file is saved at a location on pi.
      what config parameter needs to edited in order to point default calender to use the ics file.

      Update:!!
      I have managed to get the my ics file for the calendar module. and is working as required.
      however i’m unable to see the location of the event. what is the config parameter to get this?

      posted in Troubleshooting
      A
      arifms
    • Default Calender using ics file from a path on pi.

      How do i use default calender using my own .ics file from outlook.?
      the ics file is saved at a location on pi.
      what config parameter needs to edited in order to point default calender to use the ics file.

      posted in Troubleshooting
      A
      arifms
    • RE: Syntax error

      @ strawberry
      Thanks for pointing out the error.
      all working good now.
      @cowboysdude edited the app id’s thanks again for pointing it out.

      Cheers

      posted in Troubleshooting
      A
      arifms
    • RE: Syntax error

      Hi cowboysdude;
      Appreciate your assistance.
      I copied the example as provided, editign the lat, long & timezone to suit mine, however it still throws error.
      carefully checked the code, noted an extra line after position, removed the same.
      tried running again, with no luck.
      changed my timezone on pi to UTC from Asia/Dubai and same in to the code, still no result.
      it throws error as below;
      Starting MagicMirror: v2.1.1
      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 …
      Starting server op port 8080 …
      Server started …
      Connecting socket for: updatenotification
      Sockets connected & modules started …
      Launching application.

      posted in Troubleshooting
      A
      arifms
    • RE: Syntax error

      Yes Exactly MM was working as required until i added the MMM-PrayerTime. As reuested below is the config.js

      /* 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", "::1"], // Set [] to allow all IP addresses.
      
      	language: "en",
      	timeFormat: 24,
      	units: "metric",
      
      	modules: [
      		{
      		module: 'email',
                      position: 'bottom_left',
                      header: 'Email',
                      config: {
                          accounts: [
                             {
                                  user: 'xxxxx@gmail.com',
                                  password: 'xxxxx',
                                  host: 'imap.gmail.com',
                                  port: 993,
                                  tls: true,
                                  authTimeout: 10000,
                                  numberOfEmails: 2,
                              },
                          ],
                          fade: true,
                          maxCharacters: 30
                      }
      		},
      		{
      			module: 'MMM-PrayerTime',
      			position: 'top_left',
      			config: {
      				apiVersion: '1.0',
      				lat: 25.258169,
      				lon: 55.304722,
      				timezone: true,
      				method: 4,
      				playAdzan: ['fajr', 'dhuhr', 'asr', 'maghrib', 'isha'],
      				notDisplayed: ['midnight', 'sunset'],
      				useUpdateInterval: true,
      				updateInterval: 86400 * 1000,
      				animationSpeed: 2.5 * 1000,
      				language: config.language,
      				showAdzanAlert: true,
      				alertTimer: 15000
      				}
      		},
      		{
      			module: "alert",
      		},
      		{
      			module: 'MMM-ModuleScheduler'
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "UAE Holidays",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check-o ",
      						url: "webcal://www.calendarlabs.com/templates/ical/UAE-Holidays.ics"
      					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "Dubai",
      				locationID: "292223",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "xxxxxxxxxxxxxxxxxxxxxxxxxxx"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "Dubai",
      				locationID: "292223",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      			}
      		},
      		{
      			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;}
      
      posted in Troubleshooting
      A
      arifms
    • Syntax error

      Re: MMM-PrayerTime
      How to change the language. npm start throws syntax error
      “WARNING! Could not load config file. Starting with default configuration. Error found: TypeError: Cannot read property ‘language’ of undefined”
      please guide to correct format

      posted in Troubleshooting
      A
      arifms