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

    Posts

    Recent Best Controversial
    • RE: Using a PIR sensor to turn off the monitor

      Great and very useful!
      Can you do also make a tutorial for the modul HC-SR04 including all phyton scripts?That would be really great.

      posted in Tutorials
      M
      MyMirror
    • Trouble with update to 2.4.1

      Hi all,

      i’ve tried to update to 2.4.1.
      But if Fails with some comments.
      Who can help a newbie?

      Pls have a look at the log and how to i fix the warnings?
      Thanks

      0_1534321671558_2018-08-15 10_11_28-Microsoft Edge.png

      Logfile:
      –> https://1drv.ms/u/s!ApE0YZ4Ndle9kAa62cB46jrluJDk

      posted in Troubleshooting
      M
      MyMirror
    • RE: MMM-WunderGround Temperature stop working

      Yes, you’re right. My “old” station disappears. I’ll take a new one and it works.

      Thanks

      posted in Troubleshooting
      M
      MyMirror
    • RE: MMM-WunderGround Temperature stop working

      Where do you change/renew your station?
      Can you provide the link?
      Thanks

      posted in Troubleshooting
      M
      MyMirror
    • RE: MMM-WunderGround Temperature stop working

      @trividar
      Click on “Learn more” and ask for a price :-(

      posted in Troubleshooting
      M
      MyMirror
    • RE: MMM-WunderGround Temperature stop working

      See here:
      https://www.wunderground.com/weather/api/
      They wrote:
      “To improve our services and enhance our relationship with our users, we will no longer provide free weather API keys as part of our program.”

      posted in Troubleshooting
      M
      MyMirror
    • RE: Trouble with python script for ultrasonic mudule HC-SR04

      @idoodler Thanks for your Reply.
      There is no clicking noise … as i haven’t got any sound device connected.
      But you’re right … the 100 seems to be the problem.
      I didn’t “saw” it … damn.
      I’ll correct this and test it again.

      Thanks

      posted in Troubleshooting
      M
      MyMirror
    • Trouble with python script for ultrasonic mudule HC-SR04

      Hi,

      i’ve got some problems with my script (don’t know, where i found it).
      In principle, it works, but after 1 or 2 days, the monitor switches no longer on or off.
      This means that the script is in an undefined state.
      With the logging I wanted to see where it hangs, but that does not really work either.
      Who can help me and optimize the script?

      Thank you

      #Bibliotheken einbinden / Import libs
      from subprocess import call
      import RPi.GPIO as GPIO
      import time
      import logging
      
      #Einstellungen für das Logging / settings for log options
      logging.basicConfig(level=logging.INFO,
                          format='%(message)s',
                          datefmt='%m-%d %H:%M',
                          filename='PIR.log',
                          filemode='w')
      
      # define a Handler which writes INFO messages or higher to the sys.stderr
      console = logging.StreamHandler()
      console.setLevel(logging.INFO)
      
      # set a format which is simpler for console use
      formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
      
      # tell the handler to use this format
      console.setFormatter(formatter)
      
      # add the handler to the root logger
      logging.getLogger('').addHandler(console)
      
      #GPIO Modus (BOARD / BCM)
      GPIO.setmode(GPIO.BCM)
       
      #GPIO Pins zuweisen / set GPIO pins
      GPIO_TRIGGER = 23
      GPIO_ECHO = 24
      Monitor_State = 0
      Counter = 0
      TVSERVICE = '/opt/vc/bin/tvservice'
      
      #Richtung der GPIO-Pins festlegen (IN / OUT) / direction for Pins (in/out)
      GPIO.setup(GPIO_TRIGGER, GPIO.OUT)
      GPIO.setup(GPIO_ECHO, GPIO.IN)
      
      Text = (time.strftime("%d.%m.%Y %H:%M:%S")) + (" Messung vom User gestartet")
      logging.info('Gestartet')
      logging.info(Text)
      logging.info('ENDE')
      
      # Bildschirm erst einmal ausschalten :-) / switch off monitor first :-)
      call([TVSERVICE, '-o'])
       
      def distanz():
          # setze Trigger auf HIGH / set trigger to HIGH
          GPIO.output(GPIO_TRIGGER, True)
       
          # setze Trigger nach 0.01ms aus LOW / set trigger after 0.01ms low
          time.sleep(0.00001)
          GPIO.output(GPIO_TRIGGER, False)
       
          StartZeit = time.time()
          StopZeit = time.time()
       
          # speichere Startzeit / remember starttime
          while GPIO.input(GPIO_ECHO) == 0:
              StartZeit = time.time()
       
          # speichere Ankunftszeit / remember 2'nd time
          while GPIO.input(GPIO_ECHO) == 1:
              StopZeit = time.time()
       
          # Zeit Differenz zwischen Start und Ankunft / calc difference
          TimeElapsed = StopZeit - StartZeit
          # mit der Schallgeschwindigkeit (34300 cm/s) multiplizieren
          # und durch 2 teilen, da hin und zurueck
          distanz = (TimeElapsed * 34300) / 2
       
          return distanz
       
      if __name__ == '__main__':
          try:
              while True:
                  abstand = distanz()
      
                  if abstand < 120 and Monitor_State == 0:
                    logging.info('Monitor gestartet')
                    Monitor_State=1
                    Counter = 0
                    call([TVSERVICE, '-p'])
                    
                  elif abstand < 120 and Monitor_State == 1:
                    Ausgabe = " Counter reset " + (" - %.1f cm" % abstand)
                    logging.info(Ausgabe)
                    Counter = 0
                    
                  elif abstand >= 120 and Monitor_State == 1 and Counter = 100 and Counter >= 11:
                    Monitor_State=0
                    Counter = 0
                    call([TVSERVICE, '-o'])
                  
                  time.sleep(1)
       
              # Beim Abbruch durch STRG+C resetten / reset after STRG+C
          except KeyboardInterrupt:
              GPIO.cleanup()
      
      
      posted in Troubleshooting
      M
      MyMirror
    • RE: Trouble with Wunderlist and/or Todoist - who can help?

      Hi pyrosmiley,
      thank you for the more detailed information. I’ll check that in the coming days. At the moment I’m busy with other things (including children’s birthday …).
      I get in touch with the results.

      posted in Troubleshooting
      M
      MyMirror
    • RE: Trouble with Wunderlist and/or Todoist - who can help?

      Hi pyrosmiley,
      i’ve removed every bracket and space … no content from the wunderlist :-(
      I think, i’ll Forget this for a while and start really new from bottom up (just with the wunderlist).
      The todoist is ok.
      If i share my account with my wife and my kids, and they will have access to todoist … they will give me thousend of tasks i have to for them :-) :-) … no, this can’t be the right way .So i have to think about, how to separate that.
      The main problem here is, to use seperate accounts with one app on my mobile.
      Thanks a lot for your help and ideas - if you find a way … pls share it :-).

      @potts-mike: Thanks for your tip

      Greets

      posted in Troubleshooting
      M
      MyMirror
    • RE: Trouble with Wunderlist and/or Todoist - who can help?

      @MyMirror
      Your example was very helpful - but the projektColors are without any effect.

      posted in Troubleshooting
      M
      MyMirror
    • RE: Trouble with Wunderlist and/or Todoist - who can help?

      @MyMirror
      Ok … wunderlist does not work … i don’t know why but i get content from todoist :-)

      May i ask another question?
      Is it possible to have more then one account from todoist on my phone to use different tables?
      I want to use one for me, check and want also to give tasks for my children (clean up their rooms and more :-) , and want to share a grocery list with my wife …
      My children should only have their own plan …
      Can you give me an example (if possible)?

      Thanks !!

      posted in Troubleshooting
      M
      MyMirror
    • RE: Trouble with Wunderlist and/or Todoist - who can help?

      @pyrosmiley
      Good ideas … i will save my config and then delete the whole stuff - make a clean install of the modules.
      Maybe there is something, which blocks the corret working …
      I’ll try that and then get back to you.
      Thanks

      posted in Troubleshooting
      M
      MyMirror
    • RE: Trouble with Wunderlist and/or Todoist - who can help?

      @pyrosmiley
      Thanks for your reply.
      I’ll will test my mirror with an old backup. This was working well.
      But since I did not get any content on my mirror either from the Wunderlist or Todoist … i was a bit desperate.
      Can you give me a screenshot which token (Wunderlist/Todoist) i have to use for the config file … i’ve tested client ID, client secret , test token … nothing works.
      I’ve rebooted my pi more than x times, tried a backup without luck … so i will have a look, if i have an very old backup somewhere on my server …
      Greets

      posted in Troubleshooting
      M
      MyMirror
    • Trouble with Wunderlist and/or Todoist - who can help?

      Hi …
      for some weeks my wunderlist was usable on my magic mirror, but then (i don’t know when …) it shows just the header - nothing more. Can someone help me with 2/3 screenshots, which id/token/api i have to catch and where this is exactly to be placed in the config file?
      If possible for both - Wunderlist and Todoist, 'cause i really don’t know which one is the better one for me and my family.
      THANKS !!!

      posted in Troubleshooting
      M
      MyMirror
    • RE: Slim, Frameless Bathroom Mirror with a 27" Display

      @schlachtkreuzer6
      Yes, of course you should!

      posted in Show your Mirror
      M
      MyMirror
    • RE: Slim, Frameless Bathroom Mirror with a 27" Display

      @reaper81
      You should ask the service …
      I think, that the will deliver the power adapter and you should give them the old one.

      posted in Show your Mirror
      M
      MyMirror
    • RE: Slim, Frameless Bathroom Mirror with a 27" Display

      and did you get that:
      –> recall off PDS241/271

      posted in Show your Mirror
      M
      MyMirror
    • RE: Slim, Frameless Bathroom Mirror with a 27" Display

      … and a few more from my site :-)

      • Can you show us, how do you dismantled the foot
        and how do you attach the power cable on the screen?
      • What about the temperature of the monitor? Will not be too hot in the tight construction?
      • Do you apply black foil on the back side of the mirror to improve the mirror effect?

      Thanks for all your tips and pictures!

      posted in Show your Mirror
      M
      MyMirror
    • 1 / 1