A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Subcategories

  • Any suggestions or wishes for the forum?

    105 Topics
    727 Posts
    J
    @sdetweil Thanks, I made the changes ad it works perfectly. Thank you for your prompt response.
  • I'm trying this one : MMM-CalendarWeek

    11
    0 Votes
    11 Posts
    4k Views
    F
    Just started this a few days ago so I’m learning every day, thank you
  • Verse Smartmirror

    15
    0 Votes
    15 Posts
    6k Views
    yawnsY
    Thanks René, I will definitely keep an eye on your development, sounds well thought!
  • Horoscope!

    horoscope
    3
    0 Votes
    3 Posts
    2k Views
    R
    @retroflex said in Horoscope!: :slightly_smiling_face: So I guess this is the first module you’ll install: https://forum.magicmirror.builders/topic/1370/mmm-horoscope-daily-horoscope Thanks, i will try it… May be i start reading daily 😊 First modules to install were the default modules 😂 then i installed email, etc… But overtall building the case, frame of magic mirror is pending… Finally i decided to bulid Magic Mirror hardware part first… Because installing modules and editing config.js, making changes to how it looks, it is like super extra long process for me… I am a newbie and its hard for me to write the code, edit CSS etc.
  • It is possible to add pictograms?

    1
    0 Votes
    1 Posts
    560 Views
    U
    This is the video refference. https://www.youtube.com/watch?v=AGbfaadASVk It is possible to add pictograms and open “Google Chrome”, “Facebook” or “Media Player” or anything else on your mirror?
  • Rookie just starting with magic mirror

    11
    0 Votes
    11 Posts
    3k Views
    Mykle1M
    It appears the issue has already been raised at the repo. :thumbsup:
  • Magic mirror not starting on boot

    1
    0 Votes
    1 Posts
    477 Views
    S
    I installed MM from the bash command on the magic mirror 2 homepage a few weeks ago. It was working great for a few days, a restart would bring MM back up once it loaded. I finally got around to building the actual enclosure and mirror last night. Plugged everything in and started up the Pi and nothing, Raspbian loads up but no MM. Instead of troubleshooting I did a fresh install of OS and MM. Starts after install but after a reboot nothing. I’ve tried again multiple times with different sd cards and different Pi’s but the same result everytime. Sometimes I can manually load up MM from command prompt but sometimes it doesn’t work at all. Any idea what I’m doing wrong here?
  • anyone figured out how to view the ring video feed, put on MM on demand??

    1
    0 Votes
    1 Posts
    494 Views
    S
    there is a new alexa skill to view the live feed from a ring (doorbell, floodlight) camera… on an Echo Show… I’d like to put that on my MM…
  • How to build my photo booth Magic Mirror

    6
    0 Votes
    6 Posts
    6k Views
    N
    @cyberphox ,Can you share it (Post Link) Thanks your sharing
  • Favicon ?

    1
    0 Votes
    1 Posts
    640 Views
    P
    Hey, maybe you can add a simple favicon to the site and forum ? It’s just a little tip but add a lot of :p
  • Humor: LED mirror only $130

    Moved
    1
    0 Votes
    1 Posts
    530 Views
    W
    I don’t know if you all appreciate a little humor here but something I found amusing … I’ve been lurking here and plan to start a project soon-ish, but today I got junk-email advertising an LED mirror for the bathroom for less than I could build a project. They started building up the marketing, talking about it being programmable, etc The description was so similar that I was annoyed my project would be passe before it even started. … nope, $130 for a lighted mirror with a timer on the light.
  • Over clock raspberry pi 3 b+

    6
    0 Votes
    6 Posts
    2k Views
    ?
    Here are some googling of benchmark for alternatives; ATB https://www.geeks3d.com/20180112/tested-asus-tinker-board-vs-raspberry-pi-3-cpu-and-gpu-benchmarks/ RockPi 4 model B https://www.techrepublic.com/article/rock-pi-4-review-is-this-the-raspberry-pi-challenger-youve-been-looking-for/ NanoPi M4 https://forum.armbian.com/topic/8097-nanopi-m4-performance-and-consumption-review/
  • Bullet Proof Mirror aka Watchdog

    1
    0 Votes
    1 Posts
    620 Views
    S
    #Bullet proof mirror and how to enable the pi watch dog. The pi has a watchdog timer circuit built into it that is a prety reasonable means of detecting crashes and forcing an automated reboot. So first we need to enable it. First enable watchdog from /boot/config.txt, adding the following line: dtparam=watchdog=on # Then install watchdog service: sudo apt install watchdog #Uncomment the following line from /etc/watchdog.conf # Uncomment to enable test. Setting one of these values to '0' disables it. # These values will hopefully never reboot your machine during normal use # (if your machine is really hung, the loadavg will go much higher than 25) max-load-1 = 24 max-load-5 = 18 max-load-15 = 12 # ... watchdog-device = /dev/watchdog So basically constant loads and watchdog will kick in not sure what the time base is think its seconds but the above does the job. Then do a reboot and we can check its running by searching the syslog in /var/log for ‘watchdog’ But how do we know its working? We can test with a fork bomb and overload the Pi. If you have done an OC (Over Clock) on your pi do not run this and for anyone this test is your own decision. I have to say that but yeah you know. So what we will do is turn off all the swap so the test ends quicker and it doesn’t thrash your flash. sudo swapoff -a nano pythonbomb.py # import os while(1): os.fork() So we found that watchdog is running in the syslog and now to test. python3 pythonbomb.py Doesn’t take long to swamp the system that one The time base has me confused as its very quick to react on a load test but pretty sure the ping test is a minute. Its good how it is and the default values seem to work well as the highest I have ever seen my pi is just above 3 Ping test I tried this by putting in the IP of my desktop 192.168.1.16 which is local but then I just shut down. And right enough after a minute my computer was no longer available the pi restarted. The only thing I am worried about and I guess this is true that you could enter an IP that may never exist and turn your pi into a rotating boot. Time to put the SD card in a reader and edit your files and remove that watchdog test on another computer I guess. If you don’t have an overzealous internal firewall that putting in your router ip 192.168.1.1 with me would make a good WiFi watchdog Then maybe a internet IP like googles main DNS of 8.8.8.8 might but not sure if you constanty pinging that you may get filtered. 8.8.8.8 is usually what many use just never set up a perm watchdog so honestly can not say bbc.co.uk - 212.58.253.67 did actually take that service down and got bombarded by sysadmins to re-instate and its prob the UK’s unofficial official ping test. etc/watchdog.conf is a standard linux watchdog file http://www.sat.dundee.ac.uk/psc/watchdog/watchdog-configure.html So you can read up on these. https://manpages.debian.org/stretch/watchdog/watchdog.8.en.html As per usual you can all my stuff on https://github.com/StuartIanNaylor/MagicMirror-Install-Guide-Raspberry-0-to-3
  • Module installing problem

    8
    0 Votes
    8 Posts
    2k Views
    3
    @mykle1 The time different is huge like 40 minutes different. i think the issue is due to the summer/sinter time.
  • Just testing. Please ignore.

    3
    0 Votes
    3 Posts
    866 Views
    MichMichM
    @yawns Thanks! 😂
  • Virtual Magic Mirror...is it possible?

    6
    0 Votes
    6 Posts
    4k Views
    A
    I use Pixel Desktop Image inside of virtualbox, which works great for me. AxLED
  • Gruppo MagicMirror TELEGRAM IN ITALIANO

    1
    0 Votes
    1 Posts
    670 Views
    L
    Buonasera a tutti amici ho creato un gruppo telegram riguardante il nostro amato MagicMirror (IN ITALIANO) chiunque sia interessato può unirsi: https://t.me/MIRROR_ITALY vi aspetto!!
  • New Project! I think!

    10
    2
    0 Votes
    10 Posts
    3k Views
    S
    @egnos that is on a different mirror project (github smart-mirror, modules here cannot be used there)… I don’t know of a general purpose voice module here (like MMM-Voice) that uses the google speech api
  • MMM-MovieInfo

    13
    0 Votes
    13 Posts
    5k Views
    S
    Lols it would seem so, as so far much effort but no completed magic mirror, but much fun :) Its been really interesting introduction to nodejs and a whole previously hidden browser console. I am still banging my head with this PiZero as really with any complexity the proc load goes crazy. Great if you keep it relatively simple, but being trying ‘other’ browsers to be lighter and to my surprise chromium is by the the best. Midori & Epiphany even after java problems or bad animation are still no lighter from what I am seeing in Top. Its a tremendous project and I will bung it a donation when I have a bit of cash.
  • 3 different Alexa modules, which one is the best?

    32
    0 Votes
    32 Posts
    27k Views
    M
    @romain I have the exact same problem and can’t seem to find any brief explanation. Did you manage to sort out Alexa yourself ?
  • Touch overly VS. "Smart Glass"

    20
    0 Votes
    20 Posts
    15k Views
    peemoellerP
    @cowboysdude Hi, I have my MM up and running but can’t seem to get my 42” IR Touch Frame to adjust from Landscape mode to Portrait. I swipe up but the cursor moves left. I installed Xinput but not having any luck :( How did you get you IR calibrated? Cheers!