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

    Posts

    Recent Best Controversial
    • RE: How I got my Magic Mirror working on a Raspberry Pi 0 (zero)

      @Kobie So even after I did all of my steps and there were no error I rebooted and came back to the terminal screen. I midori apparently didn’t launch. Also, after I did

      sudo cp config/config.js.sample config/config.js
      

      I was presented with a blank document. Is it supposed to have anything?

      posted in Tutorials
      R
      randombullet
    • RE: How I got my Magic Mirror working on a Raspberry Pi 0 (zero)

      I’ve been working on this for a little bit and I’m sorry for all the incoming questions and posts on here.

      On sudo npm install, I get npm ERR! code EPEERINVALID.

      I’ve tried googling some answers but I’m not confident enough to figure this out. Also I’m writing the steps in a more linear way to make more sense of it this is what I have so far and I’d like some input so that I can help other people.

      Step 2
      My Jessie Lite didn’t allow me to create files for some reason. I posted on reddit here.

      Anyways the way of going around this is to put in a “wpa_supplicant.conf” file into your SD card and put the following in:

      network={
      	ssid=”YOUR_WIFI”
      	psk=”WIFI_PASSWORD”
      }
      

      This is what I have so far. Please look over this. Thanks in advanced!

      1 sudo wget http://node-arm.herokuapp.com/node_latest_armhf.deb
      2 sudo dpkg -i node_latest_armhf.deb
      3 sudo apt-get install npm
      4 sudo apt-get install git
      5 cd /home/pi/
      6 git clone https://github.com/MichMich/MagicMirror
      7 cd MagicMirror
      8 sudo npm install #This will take a LONG time.
      9 sudo apt-get install midori
      10 sudo apt-get install unclutter
      11 sudo aptitude install xinit
      12 sudo apt-get install matchbox
      13 sudo raspi-config
      14 Boot Options -> B1 Desktop/CLI -> B2 Console Autologin
      15 sudo nano /home/pi/start.sh

      #! /bin/bash
      cd ~/MagicMirror
      node serveronly &
      sleep 45
      sudo xinit /home/pi/startMidori.sh
      

      16 Control + x > Y > Return
      17 sudo chmod a+x /home/pi/start.sh
      18 sudo mv /home/pi/start.sh /etc/init.d/startMagicMirror.sh
      19 sudo update-rc.d startMagicMirror.sh defaults 100
      20 sudo apt-get install x11-xserver-utils
      21 sudo nano /home/pi/startMidori.sh

      #!/bin/sh
      xset -dpms # disable DPMS (Energy Star) features.
      xset s off # disable screen saver
      xset s noblank # don’t blank the video device
      matchbox-window-manager &
      unclutter &
      midori -e Fullscreen -a http://localhost:8080
      

      22 Control + x > Y > Return
      23 sudo nano /boot/config.txt

      disable_overscan=1
      framebuffer_width=1050
      framebuffer_height=1680
      framebuffer_depth=32
      framebuffer_ignore_alpha=1
      hdmi_pixel_encoding=1
      hdmi_group=2
      display_rotate=1
      

      24 Control + x > Y > Return

      posted in Tutorials
      R
      randombullet
    • 1 / 1