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

    chris1971

    @chris1971

    9
    Reputation
    1.0k
    Profile views
    96
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    chris1971 Unfollow Follow

    Best posts made by chris1971

    • My 1st MM Project as a noob.... 1,2m x 0,6m with 22" display

      HI guys,
      I still finished my 1st MM Project. I used a 22" display with a new chinese controller. The system is powered by a WLAN socket wich can be also powerdes via a buttor an the frame (I modified the socket to get the ability).
      Content of the mirror:

      • Clock
      • Google calendar
      • Globe
      • Newsfeed
      • Wunderground weather
      • Word Clock
        My target was to have a very slim framework - I realised it with a wooden frame and alumnium profiles which cover the side of the mirror. the complete depth is now 24mm for the frame and 8mm for the mirror.
        Really happy to have it done and get a new highlight in the entree… ;-)

      2_1515339483713_3.jpg 1_1515339483712_2.jpg 0_1515339483712_1.jpg

      posted in Show your Mirror
      C
      chris1971
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      After several trials I think it’s o.k.
      Thanks for the support.
      Chris
      0_1551993447853_InkedScreenshot_final_LI.jpg

      posted in Utilities
      C
      chris1971
    • RE: MMM-OpenmapWeather - Weather still loading

      @Doppellhelix : Have you found a solution? I have similar issues…

      posted in Troubleshooting
      C
      chris1971
    • RE: 5 extra points for the WAF :)

      Hi,
      can you explain a noob a little bit more in detail how to implement the Dakboard calandar into the MM?

      I really like your setup,

      Regards, Chris

      posted in Show your Mirror
      C
      chris1971
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      @j-e-f-f Yes I have executed npm install… everything is running smooth right now. Can you explain how I can set the font size of the forecast text?
      It would be great if you could implement time for sunrise/ sunset and a moonphase… :-)

      Thanks for the great module!!! Chris

      posted in Utilities
      C
      chris1971
    • RE: My 1st MM Project as a noob.... 1,2m x 0,6m with 22" display

      New installation after DarkSky was not longer supported…

      • GoogleMapsTraffic
      • TextClock
      • Rain
      • Openweather
      • Calendar
      • Clock
      • Newsfeed

      Status_o.k..JPG

      posted in Show your Mirror
      C
      chris1971
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      @onkelbobby
      Done… after several trails I got the right setup … 0_1554403496449_04.04.2019.jpg
      Thanks

      posted in Utilities
      C
      chris1971
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      @sdetweil Thanks for this outstanding support!!!
      I learned o lot - I have installed the MM some years ago and was a little bit concerned if I can do this again…

      Now the best: The MM is running with Openweather and Goggle Maps - I tried several times install/ deinstall and found your modified script for Maps - maybe this was a solution at the end. I still see some errors in the strting script - but MM is running now with the weather module after shutdown the Darksky service - this was the only reason for me to change the system again…

      Thanks again!!!

      komplett1.JPG

      posted in Utilities
      C
      chris1971

    Latest posts made by chris1971

    • RE: Issues with Newsfeed module since 3 days

      Thanks for response,

      Do you know where I can check the logfile?

      posted in Utilities
      C
      chris1971
    • RE: Issues with Newsfeed module since 3 days

      Yes - the mirror is online. Seems that the news are displayed if I open der config.js via remotedesktop… After disconnecting the error occurs again.
      All other modules are running fine.

      posted in Utilities
      C
      chris1971
    • Issues with Newsfeed module since 3 days

      Hi, I have some issues with the Newsfeed module. I always get the messsage “error in module newsfeed - please check logfile”

      Where can I check the logfile?

      My config: ```
      {

      		module: "newsfeed",
      
      		position: "bottom_bar",
      
      		config: {
      			
      			feeds: [					
      			{
      				title: "Radio Mülheim",
      
      				url: "http://www.radiomuelheim.de/lokalnachrichten.xml",
      			},
      			{
      					title: "Tagesschau",
      					url: "http://www.tagesschau.de/xml/rss2"
      			},
      
      			],
      			showSourceTitle: true,
      
      			showPublishDate: true,
      			reloadInterval: 600000,
      			updateInterval: 15000,		
      		
      		}
      	},
      

      {

      posted in Utilities
      C
      chris1971
    • RE: MMM-OpenmapWeather - Weather still loading

      @sdetweil Thanks - I read some threads about the OpenWeather and found a solution which works for me: https://forum.magicmirror.builders/post/121018

      posted in Troubleshooting
      C
      chris1971
    • RE: MMM-OpenWeatherForecast

      I had the same problem with my weather forecast. I made a subscription for an API 3.0 key and modified the config in this way:

      {
      		module: "MMM-OpenWeatherForecast",
      		position: "top_right",
      		header: "Wetter in Mülheim",
      		config: {
              apiBaseURL: "https://api.openweathermap.org/data/3.0/onecall?",
              apikey: "xxxxxxxxxxxxxxxxxxxxxxxx", //only string here
            latitude: 51.xxxxxxxx,            //number works here
            longitude: 6.9xxxxxxxx,          //so does a string
            updateInterval: 45,
      	iconset: "3c",
      	maxDailiesToShow: 4,
      	maxHourliesToShow: 4,
      	label_hourlyTimeFormat: "k[ Uhr]",
      	label_sunriseTimeFormat: "k:mm",  // change the format for this one 
      	label_days: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]
      

      In addition I added “https://api.openweathermap.org/data/3.0/onecall?” as mentioned by @Ray in the node_helper.js in the weather module. The update intervall is 45 minutes - which means below 1000 calls per month
      The module is running again!!!

      Thx to this community and forum,
      Chris

      posted in Troubleshooting
      C
      chris1971
    • RE: MagicMirror With Face Recognition

      Which weather module do you use? Could it be used for Germany?

      posted in Show your Mirror
      C
      chris1971
    • RE: MMM-OpenmapWeather - Weather still loading

      @sdetweil Thanks for the great support!!!

      posted in Troubleshooting
      C
      chris1971
    • RE: MMM-OpenmapWeather - Weather still loading

      @sdetweil Do you have a description what to do to run MMM-OpenmapWeather in future? I am not an expert in working with the modules and was happy to have a running system… ;-)
      Thanks, Chris

      posted in Troubleshooting
      C
      chris1971
    • RE: MMM-OpenmapWeather - Weather still loading

      @Doppellhelix : Have you found a solution? I have similar issues…

      posted in Troubleshooting
      C
      chris1971
    • RE: My 1st MM Project as a noob.... 1,2m x 0,6m with 22" display

      New installation after DarkSky was not longer supported…

      • GoogleMapsTraffic
      • TextClock
      • Rain
      • Openweather
      • Calendar
      • Clock
      • Newsfeed

      Status_o.k..JPG

      posted in Show your Mirror
      C
      chris1971