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

    Posts

    Recent Best Controversial
    • RE: Bathroom Cabinet MM

      @Mitchfarino
      This should answer your question: http://www.hdcplayer.com/Up/day_150403/201504030705367346.jpg
      You can remove the country specific adapter and plug in an ordinary cable. @MichMich did the same thing after blowing his first charging adapter.

      posted in Show your Mirror
      yawnsY
      yawns
    • RE: Where to get (cheap) acrylic mirror from in Germany

      https://www.myspiegel.de/spionspiegel-pg-2102.html
      This vendor was mentioned some time ago. I will call some local glaziers, but will give myspiegel.de a chance if prices are far off.

      posted in Hardware
      yawnsY
      yawns
    • RE: Monitor with case or without case

      I did not try it yet, my screen is still in its case.
      2 things I could imagine:

      1. With the monitor in its own case it requires more space and makes the whole mirror thicker.
      2. Depending on the case and the mirror it could be complicated getting the mirror glas flat to the screen, so you could see the borders of the screen behind the mirror which could look ugly.
      posted in Hardware
      yawnsY
      yawns
    • RE: First Raspberry

      why do you see this? Are you running a Raspberry Pi 1 or Raspberry Zero?
      In the terminal (bash / console / …) run “node serveronly”

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: What Lighttransmission-Rate have your Mirrors?

      @Patrick
      Do you actually see the golden shine glastroech mentions on their website for 12% mirror glass?

      posted in Hardware
      yawnsY
      yawns
    • RE: What Lighttransmission-Rate have your Mirrors?

      @cpramhofer
      Do you have experiences with this vendor? The price sounds rather fair, but they mention a light brown accent due to the reflection material. I’m curious how this looks like.

      posted in Hardware
      yawnsY
      yawns
    • RE: Temporary disable modules

      I like the idea, to quickly disable modules for testing purpose.

      posted in Feature Requests
      yawnsY
      yawns
    • RE: MMM-Temperature/Humidity Module (DHT11, DHT22 and AM2302 sensors.)

      I never played around with this module. But I would use this:

      { module: 'MMM-Temperature-Humidity', position: 'top_right' }

      And then you edit node_helper.js to set for DHT11 or DHT22 and the correct pin in ( )

      posted in Utilities
      yawnsY
      yawns
    • RE: MMM-Temperature/Humidity Module (DHT11, DHT22 and AM2302 sensors.)

      @H3L1o150
      No, you need to edit the file node_helper.js in the modules folder
      Currently you cannot define the pin and the sensor type in the config section. But I think this should be improved in a future release

      posted in Utilities
      yawnsY
      yawns
    • RE: SD Card Backup

      If you still want to backup your sd card you could read this: https://www.linux-tips-and-tricks.de/en/backup

      I don’t entirely agree with the guys above me. I don’t want to compile and reinstall additional libraries, setup the pi again, do the hassle with the tv screen, …

      posted in General Discussion
      yawnsY
      yawns
    • RE: MMM-forecast-io -- Localized up to the minute weather

      There is a comma missing after your apiKey

      posted in Utilities
      yawnsY
      yawns
    • RE: MagicMirror is voted number 1 in the MagPi Top 50!

      whoop whoop
      Congratulations

      posted in Announcements
      yawnsY
      yawns
    • RE: MMM-WorldTides - show high and low water for your region

      @onetwankyfive said in MMM-WorldTides - show high and low water for your region:

      Is there a way to make it 12 hour instead of 24 hour time?

      Hi, sorry it took a bit longer than expected to find some time. It actually used 12 hour format, I just forgot the “am/pm” extension.

      So I replaced this:

      time: ((this.config.timeFormat === 24) ? moment(t.dt, "X").format("HH:mm") : moment(t.dt, "X").format("hh:mm")), 
      

      with this:

      time: ((this.config.timeFormat === 24) ? moment(t.dt, "X").format("HH:mm") : moment(t.dt, "X").format("hh:mm a")),
      
      posted in Utilities
      yawnsY
      yawns
    • RE: Mat's mirror completed!

      Good job!
      I like the overall look and I really appreciate sharing detailed information and some of your experience.

      posted in Show your Mirror
      yawnsY
      yawns
    • RE: Different sleep function

      @tjop said in Different sleep function:

      @yawns So that proposed code basically turns on and off the TV?

      Correct. This feature is commonly used in other HDMI connected devices like Bluray players, gaming consoles and such. Most of the time it is used to keep things simple. You turn on your playstation and it automatically activates the connected tv and switches to the right input channel. Before installing the libcec stuff make sure your tv supports such features.

      @tjop said in Different sleep function:

      @yawns I could find a new tv panel to replace my current one that won’t have the annoying blue screen with the no signal message? I apologize for my ignorance on this subject. Is there a good way to find a new tv panel controller or what I should look for in general?

      Right. If turning off and on does not work or is too slow you could look for another TV Panel Controller like here: http://www.ebay.com/bhp/lcd-controller-board-tv
      I did not play around with these and you need to find one which works with your large screen and the display you are using but it could be worth a try.

      posted in Requests
      yawnsY
      yawns
    • RE: Wifi Connectivity / Access Settings

      If you attach a keyboard to the pi, couldn’t you just hit ALT+F4 to quit the fullscreen browser?

      What happened to your settings? Are you able to access it on the network via wireless? If not could you plug in a network cable to access it then using putty (or any other ssh client)?

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Different sleep function

      I am in the same situation. I have a Blaupunkt 32" tv. I was able to deactivate the blue screen in the tv settings but after running tvservice -o the screen shows “No Signal”.
      I installed libcec (https://github.com/Pulse-Eight/libcec) and use these commands:

      Check if libcec is working:
      cec-client -l please note this is a small L

      power on the tv:
      echo "on 0" | sudo cec-client -s -d 1

      power off the tv:
      echo "standby 0" | sudo cec-client -s -d 1

      check tv status:
      echo "pow 0" | sudo cec-client -s -d 1

      Downside of this approach is the longer delay the tv needs to power on and show a picture. And I don’t know how long the tv will last until it is broken after continous on and off cycles.

      Maybe you need to find a tv panel controller (on ebay, alibaba) suitable for your tv panel without annyoing onscreen displays.

      posted in Requests
      yawnsY
      yawns
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      This is what the readme on github says:

      Array of 1 ProjectId you want to display. 
      
      Possible values: array 
      Default value: [ 166564794 ] 
      Example: [166564794] 
      
      Getting the Todoist ProjectID:
      1) Go to Todoist (Log in if you aren't)
      2) Click on a Project in the left menu
      3) Your browser URL will change to something like
      "https://todoist.com/app?lang=en&v=818#project%2F166564897"
      
      Everything after %2F is the Project ID. In this case "166564897"
      
      posted in Productivity
      yawnsY
      yawns
    • RE: MMM-WorldTides - show high and low water for your region

      There should be. I use the time format which is set in config.js but I did not check. I simply forgot about that. I will check tomorrow evening and let you know what to do.

      posted in Utilities
      yawnsY
      yawns
    • RE: Where are you from?

      Solingen, Germany

      posted in General Discussion
      yawnsY
      yawns
    • 1 / 1