Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. istepgueu
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.
    • Profile
    • Following 1
    • Followers 1
    • Topics 4
    • Posts 35
    • Best 9
    • Groups 0

    istepgueu

    @istepgueu

    11
    Reputation
    1424
    Profile views
    35
    Posts
    1
    Followers
    1
    Following
    Joined Last Online
    Location Belgium Age 37

    istepgueu Follow

    Best posts made by istepgueu

    • My Square MagicMirror - Wooden Frame

      Hi !

      My First Mirror. Wooden Frame. Size : 60x60 cm
      Lcd Philipps 19"

      0_1489864898237_IMG_6292.JPG

      1_1489864898237_IMG_6307.JPG

      2_1489864898237_IMG_6309.JPG

      3_1489864898238_IMG_6323-1.JPG

      0_1489865002680_IMG_6324-1.JPG

      posted in Show your Mirror
      istepgueu
      istepgueu
    • RE: Where are you from?

      Belgium - Namur

      posted in General Discussion
      istepgueu
      istepgueu
    • RE: [MMM-Buttons] Not recognizing button presses

      For testing in terminal :

      1- Create a button.py file with this :

      import RPi.GPIO as GPIO
      import time
      
      GPIO.setmode(GPIO.BCM)
      GPIO.setup(24, GPIO.IN, pull_up_down=GPIO.PUD_UP)
      GPIO.setup(25, GPIO.IN, pull_up_down=GPIO.PUD_UP)
      
      tries = 0
      
      while (tries < 200):
          if GPIO.input(25):
              print("Open")
          else:
              print ("Close")
          time.sleep(0.5)
          tries = tries + 1
      
      #GPIO.cleanup()           # clean up GPIO on normal exit
      
      

      2 - Execute with “python button.py”

      3 - Test your button.

      posted in Troubleshooting
      istepgueu
      istepgueu
    • RE: Garage Door Detectors

      I already installed physical sensor like the picture in the first post.
      I can connect it to the GPIO.

      The whole hardware part is already done. It is currently running on an arduino but I would like to move it on the magic mirror (and therefore have a module that reads if the contact is open or closed on a pin of the GPIO).

      posted in Requests
      istepgueu
      istepgueu
    • RE: [MMM-Buttons] Not recognizing button presses

      @Jopyth Yes of course !

      posted in Troubleshooting
      istepgueu
      istepgueu
    • RE: Garage Door Detectors

      Hello.

      Here is my current “installation”.

      alt text

      My 2 door sensors send 1 or 0 if there is contact.

      Depending on the result, LEDs 1 and 2 light up red or green.

      0_1486025374805_Capture d’écran 2017-02-02 à 09.37.06.png

      What I would like is to replace the leds with a logo on the mirror.
      (I have a door on the street side and a door on the garden side which explains the logos)

      0_1486025879937_logos-rouge.png
      1_1486025879938_logo-verts.png

      Here is the code of my Arduino project.

      #include   
      
      const int  C_buttonPin = 12; // Door 1 
      const int  H_buttonPin = 13; // Door 2
      
      const int ledsPin = 2;
      const int nombreLeds = 2;
      const int intervalleTemps = 200;
      Adafruit_NeoPixel pixels = Adafruit_NeoPixel(nombreLeds, ledsPin);
      
      int C_buttonState = 0;         // Etat actuel Door 1
      int H_buttonState = 0;         // Etat actuel Door 2
      
      // the setup routine runs once when you press reset:
      void setup() {
        // initialize serial communication at 9600 bits per second:
        Serial.begin(9600);
        // make the pushbutton's pin an input:
        pinMode(12, INPUT_PULLUP);
        pinMode(13, INPUT_PULLUP);
        pixels.begin();
        pixels.show();
      }
      
      // the loop routine runs over and over again forever:
      void loop() {
      
       int sensorValC = digitalRead(12); Serial.println(sensorValC);
       int sensorValH = digitalRead(13); Serial.println(sensorValH);
      
        
      if (sensorValC == 1) 
      {
      pixels.setPixelColor(0, 255,0,0);  
      }
      else
      {
      pixels.setPixelColor(0, 124,252,0);
      }
      
      if (sensorValH == 1) 
      {
      pixels.setPixelColor(1, 255,0,0); 
      }
      else
      {
      pixels.setPixelColor(1, 124,252,0); 
      }
      
      
      
      pixels.show();
      delay(intervalleTemps);
      
      }
      

      Ho and sorry for my bad english (i’m from Belgium)

      posted in Requests
      istepgueu
      istepgueu
    • RE: [MMM-Buttons] Not recognizing button presses

      @Mar
      Sorry but I have no idea … Maybe @Jopyth the creator of the module could help you?

      posted in Troubleshooting
      istepgueu
      istepgueu
    • RE: Garage Door Detectors

      Yes !

      I have successfuly installed MMM-buttons and connect my first magnetic sensor to pin24

      When contact is ON, nothing happen.
      When contact is OFF, I have the notification message and the RPI Shutdown.

      Now I’m a bit stuck for the rest.
      I do not see how to display images in a specific place in the mirror.

      Here is the working code :

      {
          module: 'MMM-Buttons',
          config: {
              buttons: [
      
      {
                      pin: 24,
                      name: "power",
                      longPress: {
                          title: "Power off",
                          message: "Keep pressed for 3 seconds to shut down",
                          imageFA: "power-off",
                          notification: "REMOTE_ACTION",
                          payload: {action: "SHUTDOWN"}
                      },
                      shortPress: undefined
                  }
      
              ]
          }
      },
      
      posted in Requests
      istepgueu
      istepgueu
    • RE: Garage Door Detectors

      @morozgrafix Ok I understand the principle. I will try to look at this but I do not have enough skills.

      On the way to create a module “MMM-doors-sensor”

      posted in Requests
      istepgueu
      istepgueu

    Latest posts made by istepgueu

    • RE: My Square MagicMirror - Wooden Frame

      @fox thanks !! 😉

      posted in Show your Mirror
      istepgueu
      istepgueu
    • RE: My Square MagicMirror - Wooden Frame

      @jasondreher I would go to the side of IFTTT if there is no way to play with it.
      If door Locked, then …

      https://ifttt.com/smartthings

      posted in Show your Mirror
      istepgueu
      istepgueu
    • RE: My Square MagicMirror - Wooden Frame

      Hi @Andromede88 !

      I’m from Belgium.
      I bought the glass in a local mirror shop.

      posted in Show your Mirror
      istepgueu
      istepgueu
    • RE: My Square MagicMirror - Wooden Frame

      Hi @jasondreher !

      For my doors, this is a python script that will read my sensors.
      Everything is saved in a mysql database and a small local server on the raspberry will read this database.
      Then, the iFrame plugin displays my local web page (with the logos of the doors)

      posted in Show your Mirror
      istepgueu
      istepgueu
    • RE: My Square MagicMirror - Wooden Frame

      @broberg thanks !
      It’s not realy a mirror.
      It’s a solar control glass

      His name is “Antelio Havane”
      http://uk.saint-gobain-glass.com/product/786/sgg-antelio

      posted in Show your Mirror
      istepgueu
      istepgueu
    • My Square MagicMirror - Wooden Frame

      Hi !

      My First Mirror. Wooden Frame. Size : 60x60 cm
      Lcd Philipps 19"

      0_1489864898237_IMG_6292.JPG

      1_1489864898237_IMG_6307.JPG

      2_1489864898237_IMG_6309.JPG

      3_1489864898238_IMG_6323-1.JPG

      0_1489865002680_IMG_6324-1.JPG

      posted in Show your Mirror
      istepgueu
      istepgueu
    • RE: Language Calendar Module

      @broberg Nice ! Working 😉

      Merci in French 🙂

      posted in Troubleshooting
      istepgueu
      istepgueu
    • Language Calendar Module

      Hi !

      I have à problem with calendar.
      My MM config is French but Calendar is mix French/english

      “The day after Tomorrow” = “Après-demain”

      0_1487618735921_Capture d’écran 2017-02-20 à 20.25.16.png

      posted in Troubleshooting
      istepgueu
      istepgueu
    • RE: Where are you from?

      Belgium - Namur

      posted in General Discussion
      istepgueu
      istepgueu
    • RE: iOS app icon for MMM-Remote-Control

      @Jopyth if you want to update your module 😉

      posted in Troubleshooting
      istepgueu
      istepgueu