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

    Posts

    Recent Best Controversial
    • RE: Not sure what doing wrong :( adding modules

      @pinsdorf said in Not sure what doing wrong :( adding modules:

      {
      module: ‘uptimerobot’,
      position: ‘top_right’,
      config: {
      useColors: true
      api_key:‘u505342-b40737465f0eada9bb8a’,
      },

      Missing comma behind the “true”.

      Must look like this:

      {
      		module: 'uptimerobot',
      		position: 'top_right',
              		config: {
      		useColors: true,
      		api_key:'u505342-b40737465f0eada9bb8a'
      	},
      

      Just a copy/paste failure from Mykle ;)

      posted in Troubleshooting
      cruunnerrC
      cruunnerr
    • RE: MMM-Button doesn't work

      ok, will try tomorrow and report ;)
      thank you very very much for spending your time

      posted in Troubleshooting
      cruunnerrC
      cruunnerr
    • RE: Changing the length of the line under the header

      @Mykle1 said in Changing the length of the line under the header:

      @cruunnerr

      Or don’t use a header at all. My personal preference. :-)

      Was just hoping there is an amazing trick to use the custom.css for exactly my problem XD

      Maybe i simply shouldn’t install every module i find ^^

      posted in Custom CSS
      cruunnerrC
      cruunnerr
    • RE: stronger Raspberry Pi 3 Alternatives

      @Mykle1

      https://youtu.be/FjbzKfeHB_8?t=8m10s

      As i understood, u were able to use GPIO commands the same way u do on a raspberry. Seems to be a nice option

      Benchmarks at 08:10

      posted in Hardware
      cruunnerrC
      cruunnerr
    • RE: Failed at the magicmirror@2.2.2 start script 'sh-run-start.sh'

      i did it exactly as wrote in this tutorial:

      https://github.com/MichMich/MagicMirror/wiki/Jessie-Lite-Installation-Guide

      only difference:
      i used Raspbian stretch lite and to disable the screensaver i used xscreensaver

      does need a little bit longer because u need to install the dependancies first, but it runs from the beginning without issues.

      but to be on the safety side, you can use raspbian jesse full as many users wrote about problems with stretch

      posted in Troubleshooting
      cruunnerrC
      cruunnerr
    • RE: Changing compliments

      @Stacy
      you don’t need to change compliments in the config of the module. When u ever update your mirror the changes will be overwrite.

      Just do it in the normal “MagicMirror/config/config.js”

      Your compliments sector should look like this:

                  {
      			module: "compliments",
      			position: "lower_third",
                              config: {
      	                           compliments: {
      		                   anytime: [
      			           "Hey there sexy!"
      		                   ],
      		                   morning: [
      			           "Good morning, handsome!",
      			           "Enjoy your day!",
      			           "How was your sleep?"
      		                   ],
      		                   afternoon: [
      			           "Hello, beauty!",
      			           "You look sexy!",
      			           "Looking good today!"
      		                   ],
      		                   evening: [
      			           "Wow, you look hot!",
      			           "You look nice!",
      			           "Hi, sexy!"
      		                   ]
      	                     }
                             }
      		},
      

      instead of just using “morning, afternoon, evening” u can also use these:

      day_sunny
      day_cloudy
      cloudy
      cloudy_windy
      showers
      rain
      thunderstorm
      snow
      fog
      night_clear
      night_cloudy
      night_showers
      night_rain
      night_thunderstorm
      night_snow
      night_alt_cloudy_windy
      

      just take a look here: https://github.com/MichMich/MagicMirror/tree/master/modules/default/compliments

      posted in Troubleshooting
      cruunnerrC
      cruunnerr
    • RE: Changing the length of the line under the header

      That looks great !!!
      Will try that later. Thank u very much dude :P

      edit:

      .left header {
          border-bottom: none;
      }
      

      THAT WORKS EXACTLY LIKE I WANT! Great :)

      posted in Custom CSS
      cruunnerrC
      cruunnerr
    • RE: Powering my mirror?

      @The-Bean said in Powering my mirror?:

      I’m actually not sure what to check for watt consumption. I’m only seeing volt and amp.

      W = V * A (Watt = Volts * Ampere)

      posted in Hardware
      cruunnerrC
      cruunnerr
    • RE: Downgrade Magic Mirror?

      well, i allowed to listen to all ip’s at all:

      var config = {
              address: "0.0.0.0", // Address to listen on, can be:
                                    // - "localhost", "127.0.0.1", "::1" to listen on lo$
                                    // - another specific IPv4/6 to listen on a specific$
                                    // - "", "0.0.0.0", "::" to listen on any interface
                                    // Default, when address config is left out, is "loc$
              port: 8080,
              ipWhitelist: [], // Set [] to allow all IP addresses
                                                                     // or add a specifi$
                                                                     // ["127.0.0.1", ":$
                                                                     // or IPv4 range of$
                                                                     // ["127.0.0.1", ":$
      

      Maybe thats the reason. I had a few problems with just allowing single ip dresses so i went to this option. But works fine, and i have a hardware firewall installed in my network so i hope that this is enough^^

      for external access i use VPN

      posted in Troubleshooting
      cruunnerrC
      cruunnerr
    • RE: MMM-NOAA V2 doesn't start (Unexpected token < in JSON at position 0)

      @sean said in MMM-NOAA V2 doesn't start (Unexpected token < in JSON at position 0):

      request({
      url: “http://ip-api.com/json”,
      method: ‘GET’
      }, (error, response, body) => {
      console.log(body) // Try logging suspicious point.
      info = JSON.parse(body);
      lat = info.lat;
      lon = info.lon;
      });

      OMG thank you so much…

      I am a dumbass XD
      My PiHole blocked the ip-api.com domain, so i put this to the whitelist and its running.

      Sorry guys

      posted in Troubleshooting
      cruunnerrC
      cruunnerr
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 3 / 8