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

    Posts

    Recent Best Controversial
    • Magic mirror does not start automatically when booting

      Hello, I updated to the new MM version at the weekend and then I couldn’t get it to work anymore.
      That’s why I reinstalled everything, but my MM doesn’t automatically state when booting. I entered this command:

      bash -c “$(curl -sL https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/fixuppm2.sh)”

      but every time I get this message:

      b52cdba1-4bfc-44cc-97e0-4824a3d39449-grafik.png

      What exactly am I doing wrong? I copied this command from here: https://github.com/sdetweil/MagicMirror_scripts

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: Update is not working..I need help please

      @Stoffbeuteluwe Did you just deactivate the 3 modules in config.js, or did you also delete the 3 folders in the Modules folder? Did you have to do anything else to make it work?

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: Update is not working..I need help please

      @sdetweil I installed it, thanks

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: Error updating MM

      @kevmang Did you completely empty the node_modules folder? Did you have to run bash again from above?
      And then you had to completely reinstall all the modules you previously had on it?

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: Update is not working..I need help please

      @sdetweil
      I don’t have version 20 either but rather 16.14.2. How can I install version 20? Can you please help me?

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: my Netatmo weather module has not been working

      @Fozi oh dear god, that was the solution. Thank you very much. it works now

      posted in Troubleshooting
      S
      sil3ntstorm
    • my Netatmo weather module has not been working

      Hello everyone, my Netatmo weather module has not been working for about 2 weeks. MM and module are updated, meanwhile I have the feeling that netatmo has changed something in their api.
      Does anyone else have the same problem?
      I use this module:
      https://github.com/RaymondMolenaar/MMM-Netatmo

      Danke Google für die Übersetzung :-)

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: MMM-Weather

      I only see the sunset, how can I also display the sunrise (I mean the time)?

      In addition, on days when the sun is shining, I would also have the sun displayed in yellow and not orange.

      https://docs.magicmirror.builders/modules/customcss.html
      here it is written that I have the entry

      .wi-day-sunny {
      color: #ffff00;
      }

      in custom css-file in css/custom.css, I did that, restarted Pi afterwards, but the sun is still displayed orange to me. Did I miss something? Can someone help me? My English is not that good, I hope you understand what I want to say :-)

      posted in Utilities
      S
      sil3ntstorm
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      The data is read from https://home.openweathermap.org and displayed on the MM, right?
      Since these often do not match for my area, I want to know whether it is possible to store another provider? For example
      https://www.wetteronline.de/wettertrend/hemau

      Bild_2022-07-29_153013910.png

      posted in Utilities
      S
      sil3ntstorm
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      Like now?
      I did it but the clouds or rain are still displayed to me, no change from before. The 3 apps on the mobile all show sun most of the time and at least 10 hours of sun (just like in the past, always sunny and dry in the app and in real but always cloudy and rainy in the MM module)

      {
          module: "MMM-OpenWeatherForecast",
        
          position: "top_right",
          header: "Wettervorschau Schama",
          config: {
            apikey: "XYXYXYXY", //SUPER SECRET
            latitude: 49.039349,     
            longitude: 11.847070,   
            units: "metric",
            iconset: "4c",
            colored: true,
            concise: true,     
            
      			 label_high: "max",
      			 label_low: "min",
      			 label_days: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
      			 label_sunriseTimeFormat: "k:mm",
      			 label_hourlyTimeFormat: "k[h]",
      			 label_hourlyTimeFormat: "k[ Uhr]",
      
      
      
           
            requestDelay: 2000,
            showFeelsLikeTemp: true,
            displayKmhForWind: true,
            showCurrentConditions: true,
            showSummary: false,
            showExtraCurrentConditions: true,
            extraCurrentConditions: {
              highLowTemp: true,
              precipitation: true,
              sunrise: true,
              sunset: true,
              wind: true,
              barometricPressure: false,
              humidity: true,
              dewPoint: false,
              uvIndex: true,
              visibility: false
            },
      
            forecastLayout: "table",
            forecastHeaderText: "",
      
            hourlyForecastTableHeaderText: "Stundenvorschau",
            showHourlyForecast: true,
            showHourlyTableHeaderRow: true,
            hourlyForecastInterval: 3,
            maxHourliesToShow: 5,
            hourlyExtras: {
              precipitation: true,
              wind: true,
              barometricPressure: false,
              humidity: false,
              dewPoint: false,
              uvIndex: false,
              visibility: false
            },
      
            dailyForecastTableHeaderText: "Wochenvorschau",
            showDailyForecast: true,
            showDailyTableHeaderRow: true,
            maxDailiesToShow: 10,
            dailyExtras: {
              precipitation: true,
              sunrise: false,
              sunset: false,
              wind: true,
              barometricPressure: false,
              humidity: false,
              dewPoint: false,
              uvIndex: false
            },
      
          }
        },
      
      
      

      Bild_2022-07-29_150313543.png

      posted in Utilities
      S
      sil3ntstorm
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast
      {
          module: "MMM-OpenWeatherForecast",
        
          position: "top_right",
          header: "Wettervorschau Schama",
          config: {
            apikey: "XYXYXY", //SUPER SECRET
            latitude: "49.039349",     //49.039349 Hemau
            longitude: "11.847070",    //11.847070 Hemau     
            units: "metric",
            iconset: "4c",
            colored: true,
            concise: true,
      
      			 label_high: "max",
      			 label_low: "min",
      			 label_days: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
      			 label_sunriseTimeFormat: "k:mm",
      			 label_hourlyTimeFormat: "k[h]",
      			 label_hourlyTimeFormat: "k[ Uhr]",
      
      
      
           
            requestDelay: "2000",
            showFeelsLikeTemp: true,
            displayKmhForWind: true,
            showCurrentConditions: true,
            showSummary: false,
            showExtraCurrentConditions: true,
            extraCurrentConditions: {
              highLowTemp: true,
              precipitation: true,
              sunrise: true,
              sunset: true,
              wind: true,
              barometricPressure: false,
              humidity: true,
              dewPoint: false,
              uvIndex: true,
              visibility: false
            },
      
            forecastLayout: "table",
            forecastHeaderText: "",
      
            hourlyForecastTableHeaderText: "Stundenvorschau",
            showHourlyForecast: true,
            showHourlyTableHeaderRow: true,
            hourlyForecastInterval: 3,
            maxHourliesToShow: 5,
            hourlyExtras: {
              precipitation: true,
              wind: true,
              barometricPressure: false,
              humidity: false,
              dewPoint: false,
              uvIndex: false,
              visibility: false
            },
      
            dailyForecastTableHeaderText: "Wochenvorschau",
            showDailyForecast: true,
            showDailyTableHeaderRow: true,
            maxDailiesToShow: 10,
            dailyExtras: {
              precipitation: true,
              sunrise: false,
              sunset: false,
              wind: true,
              barometricPressure: false,
              humidity: false,
              dewPoint: false,
              uvIndex: false
            },
      
          }
        },
      
      
      
      posted in Utilities
      S
      sil3ntstorm
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      Great job, I like it very much, thanks for that.

      I’ve had it running for about 8 weeks and I’ve noticed that my temperature readings are correct, but my weather is always showing as cloudy or rainy in advance, even though the sun has been shining 90% of the time for weeks and almost never rains

      I checked the latitude and longitude several times and read them out and accepted them either via https://www.latlong.net/ or via google.

      What can be the reason for the fact that I keep getting only clouds and rain, even though the sun is shining most of the time?

      Place of residence is: Germany Hohenschambach
      Width 49.039349
      Longitude 11.847070

      Bild_2022-07-29_124222891.png

      I hope you can help me here 😊
      My English skills are not very good, I translated it with google, I hope you understand what I want to say 😊

      posted in Utilities
      S
      sil3ntstorm
    • RE: Problem with MYCalendar Module

      solution: But for it to work properly, I still had to run npm install request and npm install valid-url These were removed in the last MagicMirror updates. Now works :thumbs_up:

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: Magic(Dashboard)Mirror

      @mz-ber danke, jetzt geht mycalendar bei mir auch wieder :clapping_hands:

      posted in Show your Mirror
      S
      sil3ntstorm
    • RE: Problem with MYCalendar Module

      It looks like this module is not compatible with MM 2.18. Older versions will work with it, but the latest will no longer work. I have now switched to the standard module

      posted in Troubleshooting
      S
      sil3ntstorm
    • RE: Magic(Dashboard)Mirror

      Schaut stark aus, gefällt mir gut.

      Welches Modul nimmst du für dein Familienkalender? Und kannst du die Einstellungen bitte dazu posten? Danke

      posted in Show your Mirror
      S
      sil3ntstorm
    • RE: MM Dashboard

      Schaut super aus und schön aufgeräumt. Ich hätte 2 Fragen dazu:

      1. Welche Einstellungen hast du vorgenommen damit im Monatskalender die Zahl 16 grün angezeigt wird?
      2. Welche Einstellungen hast du vorgenommen damit der obere Kalender in Magenta Farbe angezeigt wird?
      posted in Show your Mirror
      S
      sil3ntstorm
    • RE: Problem with MYCalendar Module

      I don’t understand exactly how to proceed.

      Or are there other modules that show my calendar like this

      8caa1f34-2eac-4af2-a8a2-0a15b7031d0d-image.png

      posted in Troubleshooting
      S
      sil3ntstorm
    • Problem with MYCalendar Module

      Hello everyone, since I set up my MM again, my MyCalendar module no longer works, no matter what I do, the screen stays black (you only see a mouse pointer). I copied the data for it from the config.js (which I used earlier). If the MyCalendar module is deactivated, everything goes as normal
      Command npm run config: check says: Your configuration file doesn’t contain syntax errors 🙂 so no error is shown to me here.
      Does anyone else have the problem with the MyCalendar module?

      https://github.com/jclarke0000/MMM-MyCalendar

      posted in Troubleshooting
      S
      sil3ntstorm
    • 1
    • 2
    • 3
    • 3 / 3