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?

    95 Topics
    656 Posts
    KristjanESPERANTOK

    @toxeek Just to let you know, I am not part of the core MagicMirror team and my answer is based on my personal interpretation of the situation.

    I wish you every success! 🚀 I would find it interesting if you could tell us about your project later.

  • Anti-glare or not?

    1
    0 Votes
    1 Posts
    864 Views
    A

    I was wondering what the community thinks about anti-glare layer on the monitor. People, who have built several mirrors will probably know the difference in the two.
    So yeah, is the end result better if there’s an anti-glare layer on the monitor or is it better without one?

  • What do you need for trying to make a module?

    11
    0 Votes
    11 Posts
    5k Views
    F

    for sure thanks Eunanibus

  • Why do you use smart mirror?

    10
    0 Votes
    10 Posts
    6k Views
    E

    Hi, I know that this is an old topic, but I want to tell you, that the Mirror is a really nice tool. It reminds our family to don´t forget important Events, because everyone can edit the calendar.
    Also its nice to have some information about the weather.

    And - who don´t want some compliments ;) ?
    Great project!

  • refresh mirror completely from command line

    4
    0 Votes
    4 Posts
    3k Views
    cowboysdudeC

    That one I will defer on as I don’t do much of anything via ssh so not too sure myself ;)

  • Another mirror spec post I am sure

    4
    0 Votes
    4 Posts
    2k Views
    R

    Awesome thanks to both of you I am researching other options to see if i can increase the %.

  • Magic Mirror Sample Video

    6
    0 Votes
    6 Posts
    3k Views
  • 0 Votes
    1 Posts
    853 Views
    M

    Bonjour from Montreal Qc Canada…
    BTW Montreal turns 375 years old today just thought I would toss that in ;)

    I am working on my first MM project. Currently I am educating myself so I can make the best build possible for me… a person with no real programming skills but gets tech stuff in general. I did hack my NES Classic ;) I can follow directions and make way through.

    I am leaning toward a basic Raspberry Pi 3 setup with a few bells and whistles like most people have done, but before I start I have a few Windows related questions.

    My build is basically a mirror that will be placed near the front door at my new house that is currently under construction. The idea would be that my daughters can check the weather before they go to school, see important messages ie upcoming events or activities via calendar, leave messages via Cortana or Alexa (notes scheduling). I say Cortana because I have a lot of MS devices including my 950 Windows phone lol #iamthe1% Also I have some Philips Hue lights, maybe be able to control them via voice…

    I also like the facial recognition that can be used with the Windows IoT for a more personal experience but I am not a programmer so I am not sure if this is an easy route for me to take? I don’t mind grinding my way to something cool but is that even possible?

    I have 2 old windows phones. The 950 has a display adapter that basically turns the phone in to a PC and can connect to any screen. I also have a cracked HP Stream 7 tablet with Bluetooth and WiFi… Any ideas or suggestions to use these for any sort of build?

    Anybody have experience with Cortana or Windows IoT Magic Mirrors? Your thoughts, comments and suggestions? Any DIY Windows examples or sites?

    Thanks
    Marc

    ![alt text](image url)0_1495058079294_image1.JPG

  • Display a Web Page

    9
  • Remote control using your iphone

    3
    0 Votes
    3 Posts
    3k Views
    H

    Hi @Anhalter42, I did not know it. I should have read it all the modules before. That make the life more easier to be honest. Thanks for mentioned it!

  • Echo Show & Echo Calling/Messaging

    1
    0 Votes
    1 Posts
    1k Views
    hartattackH

    Who else is excited about Echo Calling and Messaging as well as the Echo Show! Seems like we are moving forward into exciting territory with technology. Now, if this was available through the Raspberry Pi, that would be even more awesome, but I doubt it will be for a while. Thoughts?

  • Comprehensive tutorial on how to build a MM2 from start to finish

    8
    0 Votes
    8 Posts
    3k Views
    G

    @Mykle1 it wouldn’t be fun if I didn’t lose sleep

  • Google home sdk

    2
    0 Votes
    2 Posts
    2k Views
    A

    @dasam FYI there is already another thread covering this, even though there is not much contribution by now: Using Google Assistant SDK

  • Download Area ?? Images for Newbie User for download??

    3
    0 Votes
    3 Posts
    1k Views
    cowboysdudeC

    Not to mention that this is a ‘project’… The user should be actively involved. ;)

  • Find a great mirror in France

    1
    0 Votes
    1 Posts
    737 Views
    F

    Hi,

    i really need some help to find a retailer in France for the See-Through Mirror.

    Do you have an idea guys ?

    Thanks !

  • Npm intstall

    7
    0 Votes
    7 Posts
    3k Views
    D

    @strawberry-3.141

    thank you good to know

  • [Solved]How to start a python script @reboot?

    10
    0 Votes
    10 Posts
    6k Views
    P

    Ok. Thanks. I made these two steps and i can see via htop that the script is running.

  • Recommended mirror specs

    11
    0 Votes
    11 Posts
    5k Views
    brobergB

    @pauabaer yeah a couple of kg, but not overwhelmingly heavy :)

  • Owncloud integration - Birthday Calendar

    6
    0 Votes
    6 Posts
    3k Views
    S

    Here is the carefree package :)
    The python script will open the Birthday.ics file directly from your Owncloud, change the year automaticly and safe the output file at a fixed location. Python “Requests” library is used to connect to your Owncloud.
    This script works in linux. The script above was only working in MS Windows.
    The script can be run by cron e.g. every 30min so you will see updates and you don’t have to worry about the next year ;)

    #!/usr/bin/env python # -*- coding: utf-8 -*- # Time functions for current year import time from time import localtime, strftime # Use Requests lib to download Owncloud Birthday calendar .ics file import requests #http://docs.python-requests.org/en/master/ year = strftime("%Y", localtime()) #Get the current year try: #Catch errors url = 'https://YOUR_URL/remote.php/dav/calendars/USER/BIRTHDAYCALENDAR?export' # Url to your Owncloud Birthday caldender .ics file. Replace parts written in capitals download = requests.get(url, auth=('USER', 'PASS')) #Replace parts written in capitals fobj_in= download.text.split("\n") #Split file fobj_out = open("/home/pi/MagicMirror/modules/Birthdays/geburtstage.ics","w") #Output file for line in fobj_in: if line.find("DTSTART") > -1 or line.find("DTEND") > -1: #Change year of DTSTART oder DTEND lines #Format of the string: DTSTART;VALUE=DATE:19650521 #DTEND;VALUE=DATE:19650522 split=line.split(":") helpline=split[0]+":"+year+split[1][4:] fobj_out.write(helpline.encode('utf-8')+"\n") else: #Change nothing, just copy the line fobj_out.write(line.encode('utf-8')+"\n") fobj_out.close() download.close() except requests.exceptions.RequestException as e: # This is the correct syntax print(e)
  • Alert from IFTTT or PC

    2
    0 Votes
    2 Posts
    1k Views
    brobergB

    @jasondreher if you have a pc in between the switch and the raspberry you can have the pc send a http get request to the mirror with MMM-Syslog (https://github.com/paviro/MMM-syslog)

  • UpVote posts....show some love.

    4
    5 Votes
    4 Posts
    2k Views
    strawberry 3.141S

    Another topic which is somehow related to give feedback/appreciation

    I recognized this behaviour in a lot of my repos and after viewing the profile of those users it looks like a scheme. So

    Why do people fork repositorys on github instead of starring them?

    Fork a repo: You fork a repo if you want to make changes to the original codebase and use the fork or create a pull request.

    Star a repo: You star a repo if you like it. It’s similar to upvote on the forum or likes on facebook, youtube, … and gives the developer kind of credit for his work.