Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. My Project
  3. livolo Glass Panel Touch Light Wall Switch + arduino 433Mhz

livolo Glass Panel Touch Light Wall Switch + arduino 433Mhz

Scheduled Pinned Locked Moved My Project
135 Posts 31 Posters 106.1k Views 44 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • TigroenotT Offline
    TigroenotT Offline
    Tigroenot
    wrote on last edited by Tigroenot
    #37

    There really is an opportunity to draw enough power from livolo internal circuits for atmega328 and a radio. With the great help of @DJONvl I managed to power up an arduino with nrf24 radio directly from the switch.
    But...
    I have a two button switch, and i tried to adopt the above scetch for my purpose (and the development version of the library) but got stuck... Can anyone please have a glance at my scetch and push me towards the right way? :)

    /**
     * The MySensors Arduino library handles the wireless radio link and protocol
     * between your home built sensors/actuators and HA controller of choice.
     * The sensors forms a self healing radio network with optional repeaters. Each
     * repeater and gateway builds a routing tables in EEPROM which keeps track of the
     * network topology allowing messages to be routed to nodes.
     *
     * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
     * Copyright (C) 2013-2015 Sensnology AB
     * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
     *
     * Documentation: http://www.mysensors.org
     * Support Forum: http://forum.mysensors.org
     *
     * This program is free software; you can redistribute it and/or
     * modify it under the terms of the GNU General Public License
     * version 2 as published by the Free Software Foundation.
     *
     *******************************
    */
    
    
    #define MY_RADIO_NRF24
    #define MY_REPEATER_FEATURE
    #include <MySensors.h>
    
    #define sensor1_PIN 5
    #define sensor2_PIN 6
    #define RELAY1_PIN 3  // Arduino Digital I/O pin number for relay 
    #define RELAY2_PIN 4 
    #define CHILD_ID_LIGHT1 1   // Id of the sensor child
    #define CHILD_ID_LIGHT2 2
    #define RELAY_ON 1
    #define RELAY_OFF 0
     
    int oldValue1=0;
    bool state1;
    bool sens1;
    int oldValue2=0;
    bool state2;
    bool sens2;
    
    //MySensor gw;
    MyMessage msg(CHILD_ID_LIGHT1,V_LIGHT);
    MyMessage msg2(CHILD_ID_LIGHT2,V_LIGHT);
    
    void setup()  
    {  
      delay(2400);
       pinMode(sensor1_PIN,INPUT);
       pinMode(sensor2_PIN,INPUT);
       digitalWrite(RELAY1_PIN, RELAY_OFF); // Make sure relays are off when starting up
       digitalWrite(RELAY2_PIN, RELAY_OFF); // Make sure relays are off when starting up
       pinMode(RELAY1_PIN, OUTPUT);         // Then set relay pins in output mode
       pinMode(RELAY2_PIN, OUTPUT);         // Then set relay pins in output mode
       state1=false;
       state2=false;
    }
     
    void presentation()  
    { 
      // Register all sensors to gw (they will be created as child devices)
      sendSketchInfo("Livolo", "1.2");
      present(CHILD_ID_LIGHT1, S_LIGHT);
      present(CHILD_ID_LIGHT2, S_LIGHT);
      delay(1400);
    }
    
    void loop() 
    {
    
     int value1 = digitalRead(sensor1_PIN);
        if (value1==1){
          state1=true;
        }else{
          state1=false;
        }
    
      if (value1 != oldValue1) {
          send(msg.set(state1), true); // Send new state and request ack back
      }
      oldValue1 = value1;
    
      int value2 = digitalRead(sensor2_PIN);
      if (value2==1){
          state2=true;
        }else{
          state2=false;
        }
    
      if (value2 != oldValue2) {
          send(msg2.set(state2), true); // Send new state and request ack back
      }
      oldValue2 = value2;
    } 
     
    void receive(const MyMessage &message) {
    
      if (message.type == V_LIGHT) {
         // Change relay state
        bool instate = message.getBool();
    
     while(instate!=state1){
         digitalWrite(message.sensor, RELAY_ON); 
         delay(30);
         digitalWrite(message.sensor, RELAY_OFF);  
         delay(30);     
        int value1 =digitalRead(sensor1_PIN);
        if (value1==1){
          state1=true;
        }else{
          state1=false;
        }
        int value2 =digitalRead(sensor2_PIN);
        if (value2==1){
          state2=true;
        }else{
          state2=false;
        }
     }    
        
    
       } 
    }
    
    

    The problem is in the receive()
    I need to destinguish the incoming state for each sensor child and set the instate value accordigly.

    Please, help, I didn't sleep for so long :)

    1 Reply Last reply
    0
    • TigroenotT Offline
      TigroenotT Offline
      Tigroenot
      wrote on last edited by
      #38

      Well, somehow I got over it :)

      Here is a working sketch for livolo two button switch:

      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
      */
      
      
      #define MY_RADIO_NRF24
      #define MY_REPEATER_FEATURE
      #include <MySensors.h>
      
      #define sensor1_PIN 5  //Pin to attach the indicator LED1
      #define sensor2_PIN 6   // LED2
      #define RELAY1_PIN 3  // Arduino Digital I/O pin number for relay 
      #define RELAY2_PIN 4 
      #define CHILD_ID_LIGHT1 1   // Id of the sensor child
      #define CHILD_ID_LIGHT2 2
      #define RELAY_ON 1
      #define RELAY_OFF 0
       
      int oldValue1=0;
      bool state1;
      int oldValue2=0;
      bool state2;
      
      MyMessage msg(CHILD_ID_LIGHT1,V_LIGHT);
      MyMessage msg2(CHILD_ID_LIGHT2,V_LIGHT);
      
      void setup()  
      {  
        delay(2400);
         pinMode(sensor1_PIN,INPUT);
         pinMode(sensor2_PIN,INPUT);
         digitalWrite(RELAY1_PIN, RELAY_OFF); // Make sure relays are off when starting up
         digitalWrite(RELAY2_PIN, RELAY_OFF); // Make sure relays are off when starting up
         pinMode(RELAY1_PIN, OUTPUT);         // Then set relay pins in output mode
         pinMode(RELAY2_PIN, OUTPUT);         // Then set relay pins in output mode
         state1=false;
      state2=false;
      }
       
      void presentation()  
      { 
        // Register all sensors to gw (they will be created as child devices)
        sendSketchInfo("Livolo", "2.0");
        present(CHILD_ID_LIGHT1, S_LIGHT);
        present(CHILD_ID_LIGHT2, S_LIGHT);
        delay(1400);
      }
      
      void loop() 
      {
      
       int value1 = digitalRead(sensor1_PIN);
          if (value1==1){
            state1=true;
          }else{
            state1=false;
          }
      
        if (value1 != oldValue1) {
            send(msg.set(state1), true); // Send new state and request ack back
        }
        oldValue1 = value1;
      
        int value2 = digitalRead(sensor2_PIN);
        if (value2==1){
            state2=true;
          }else{
            state2=false;
          }
        if (value2 != oldValue2) {
            send(msg2.set(state2), true); // Send new state and request ack back
        }
        oldValue2 = value2;
      } 
       
      void receive(const MyMessage &message) {
      
        if (message.type == V_LIGHT) {
           // Change relay state
      switch (message.sensor) {
            case 1:
              state1=message.getBool();
              digitalWrite(message.sensor+2, RELAY_ON);
              delay(30);
              digitalWrite(message.sensor+2, RELAY_OFF);  
              delay(30); 
              break;
            case 2:
              state2 = message.getBool();
              digitalWrite(message.sensor+2, RELAY_ON);
              delay(30);
              digitalWrite(message.sensor+2, RELAY_OFF);  
              delay(30);     
              break;
            }
         }
      }
      
      frankieF 1 Reply Last reply
      0
      • TigroenotT Tigroenot

        Well, somehow I got over it :)

        Here is a working sketch for livolo two button switch:

        /**
         * The MySensors Arduino library handles the wireless radio link and protocol
         * between your home built sensors/actuators and HA controller of choice.
         * The sensors forms a self healing radio network with optional repeaters. Each
         * repeater and gateway builds a routing tables in EEPROM which keeps track of the
         * network topology allowing messages to be routed to nodes.
         *
         * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
         * Copyright (C) 2013-2015 Sensnology AB
         * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
         *
         * Documentation: http://www.mysensors.org
         * Support Forum: http://forum.mysensors.org
         *
         * This program is free software; you can redistribute it and/or
         * modify it under the terms of the GNU General Public License
         * version 2 as published by the Free Software Foundation.
         *
         *******************************
        */
        
        
        #define MY_RADIO_NRF24
        #define MY_REPEATER_FEATURE
        #include <MySensors.h>
        
        #define sensor1_PIN 5  //Pin to attach the indicator LED1
        #define sensor2_PIN 6   // LED2
        #define RELAY1_PIN 3  // Arduino Digital I/O pin number for relay 
        #define RELAY2_PIN 4 
        #define CHILD_ID_LIGHT1 1   // Id of the sensor child
        #define CHILD_ID_LIGHT2 2
        #define RELAY_ON 1
        #define RELAY_OFF 0
         
        int oldValue1=0;
        bool state1;
        int oldValue2=0;
        bool state2;
        
        MyMessage msg(CHILD_ID_LIGHT1,V_LIGHT);
        MyMessage msg2(CHILD_ID_LIGHT2,V_LIGHT);
        
        void setup()  
        {  
          delay(2400);
           pinMode(sensor1_PIN,INPUT);
           pinMode(sensor2_PIN,INPUT);
           digitalWrite(RELAY1_PIN, RELAY_OFF); // Make sure relays are off when starting up
           digitalWrite(RELAY2_PIN, RELAY_OFF); // Make sure relays are off when starting up
           pinMode(RELAY1_PIN, OUTPUT);         // Then set relay pins in output mode
           pinMode(RELAY2_PIN, OUTPUT);         // Then set relay pins in output mode
           state1=false;
        state2=false;
        }
         
        void presentation()  
        { 
          // Register all sensors to gw (they will be created as child devices)
          sendSketchInfo("Livolo", "2.0");
          present(CHILD_ID_LIGHT1, S_LIGHT);
          present(CHILD_ID_LIGHT2, S_LIGHT);
          delay(1400);
        }
        
        void loop() 
        {
        
         int value1 = digitalRead(sensor1_PIN);
            if (value1==1){
              state1=true;
            }else{
              state1=false;
            }
        
          if (value1 != oldValue1) {
              send(msg.set(state1), true); // Send new state and request ack back
          }
          oldValue1 = value1;
        
          int value2 = digitalRead(sensor2_PIN);
          if (value2==1){
              state2=true;
            }else{
              state2=false;
            }
          if (value2 != oldValue2) {
              send(msg2.set(state2), true); // Send new state and request ack back
          }
          oldValue2 = value2;
        } 
         
        void receive(const MyMessage &message) {
        
          if (message.type == V_LIGHT) {
             // Change relay state
        switch (message.sensor) {
              case 1:
                state1=message.getBool();
                digitalWrite(message.sensor+2, RELAY_ON);
                delay(30);
                digitalWrite(message.sensor+2, RELAY_OFF);  
                delay(30); 
                break;
              case 2:
                state2 = message.getBool();
                digitalWrite(message.sensor+2, RELAY_ON);
                delay(30);
                digitalWrite(message.sensor+2, RELAY_OFF);  
                delay(30);     
                break;
              }
           }
        }
        
        frankieF Offline
        frankieF Offline
        frankie
        wrote on last edited by
        #39

        @Tigroenot said:

        Well, somehow I got over it :)

        Here is a working sketch for livolo two button switch:

        /**
         * The MySensors Arduino library handles the wireless radio link and protocol
         * between your home built sensors/actuators and HA controller of choice.
         * The sensors forms a self healing radio network with optional repeaters. Each
         * repeater and gateway builds a routing tables in EEPROM which keeps track of the
         * network topology allowing messages to be routed to nodes.
         *
         * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
         * Copyright (C) 2013-2015 Sensnology AB
         * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
         *
         * Documentation: http://www.mysensors.org
         * Support Forum: http://forum.mysensors.org
         *
         * This program is free software; you can redistribute it and/or
         * modify it under the terms of the GNU General Public License
         * version 2 as published by the Free Software Foundation.
         *
         *******************************
        */
        
        
        #define MY_RADIO_NRF24
        #define MY_REPEATER_FEATURE
        #include <MySensors.h>
        
        #define sensor1_PIN 5  //Pin to attach the indicator LED1
        #define sensor2_PIN 6   // LED2
        #define RELAY1_PIN 3  // Arduino Digital I/O pin number for relay 
        #define RELAY2_PIN 4 
        #define CHILD_ID_LIGHT1 1   // Id of the sensor child
        #define CHILD_ID_LIGHT2 2
        #define RELAY_ON 1
        #define RELAY_OFF 0
         
        int oldValue1=0;
        bool state1;
        int oldValue2=0;
        bool state2;
        
        MyMessage msg(CHILD_ID_LIGHT1,V_LIGHT);
        MyMessage msg2(CHILD_ID_LIGHT2,V_LIGHT);
        
        void setup()  
        {  
          delay(2400);
           pinMode(sensor1_PIN,INPUT);
           pinMode(sensor2_PIN,INPUT);
           digitalWrite(RELAY1_PIN, RELAY_OFF); // Make sure relays are off when starting up
           digitalWrite(RELAY2_PIN, RELAY_OFF); // Make sure relays are off when starting up
           pinMode(RELAY1_PIN, OUTPUT);         // Then set relay pins in output mode
           pinMode(RELAY2_PIN, OUTPUT);         // Then set relay pins in output mode
           state1=false;
        state2=false;
        }
         
        void presentation()  
        { 
          // Register all sensors to gw (they will be created as child devices)
          sendSketchInfo("Livolo", "2.0");
          present(CHILD_ID_LIGHT1, S_LIGHT);
          present(CHILD_ID_LIGHT2, S_LIGHT);
          delay(1400);
        }
        
        void loop() 
        {
        
         int value1 = digitalRead(sensor1_PIN);
            if (value1==1){
              state1=true;
            }else{
              state1=false;
            }
        
          if (value1 != oldValue1) {
              send(msg.set(state1), true); // Send new state and request ack back
          }
          oldValue1 = value1;
        
          int value2 = digitalRead(sensor2_PIN);
          if (value2==1){
              state2=true;
            }else{
              state2=false;
            }
          if (value2 != oldValue2) {
              send(msg2.set(state2), true); // Send new state and request ack back
          }
          oldValue2 = value2;
        } 
         
        void receive(const MyMessage &message) {
        
          if (message.type == V_LIGHT) {
             // Change relay state
        switch (message.sensor) {
              case 1:
                state1=message.getBool();
                digitalWrite(message.sensor+2, RELAY_ON);
                delay(30);
                digitalWrite(message.sensor+2, RELAY_OFF);  
                delay(30); 
                break;
              case 2:
                state2 = message.getBool();
                digitalWrite(message.sensor+2, RELAY_ON);
                delay(30);
                digitalWrite(message.sensor+2, RELAY_OFF);  
                delay(30);     
                break;
              }
           }
        }
        

        I am also playing around with the livolo dubble switch, but I am still figuring out how to control the switch via the header on the Switch board (thus without the base unit).
        Can you share also your hardware setup, this will be very helpfull for me.
        Thanks in advance.

        1 Reply Last reply
        0
        • Nca78N Offline
          Nca78N Offline
          Nca78
          Hardware Contributor
          wrote on last edited by Nca78
          #40

          Hello, for those who have it, can you please confirm if it contains a CD74HC238 like I have in the US(AU) sized switch ? (same PCB for 1 and 3 switches). Chip marking on my chip is HJ238. It then feeds a darlington array chip (marking UN2003A on mine) to trigger the relays.
          These would be the 2 ICs in the middle of the last picture from @DJONvl
          Would be interesting to know as it would mean the touch PCB for both types of switches would be very similar.

          TigroenotT 1 Reply Last reply
          0
          • Nca78N Nca78

            Hello, for those who have it, can you please confirm if it contains a CD74HC238 like I have in the US(AU) sized switch ? (same PCB for 1 and 3 switches). Chip marking on my chip is HJ238. It then feeds a darlington array chip (marking UN2003A on mine) to trigger the relays.
            These would be the 2 ICs in the middle of the last picture from @DJONvl
            Would be interesting to know as it would mean the touch PCB for both types of switches would be very similar.

            TigroenotT Offline
            TigroenotT Offline
            Tigroenot
            wrote on last edited by Tigroenot
            #41

            @Nca78 The euro version doesn't. Just the ULN2003A.
            Unfortunately, I can't attach images for some unknown reason.

            0_1481625608930_IMG_20161213_203852.jpg

            Finally :)
            That's a single button switch.

            frankieF 1 Reply Last reply
            1
            • TigroenotT Tigroenot

              @Nca78 The euro version doesn't. Just the ULN2003A.
              Unfortunately, I can't attach images for some unknown reason.

              0_1481625608930_IMG_20161213_203852.jpg

              Finally :)
              That's a single button switch.

              frankieF Offline
              frankieF Offline
              frankie
              wrote on last edited by
              #42

              @Tigroenot this is a picture of the EU dubble switch version.
              0_1481656082174_IMG_3522.JPG image url)
              But what I am looking for is how to connect the arduino to this PCB0_1481656390029_IMG_3524.JPG
              The picture of DJONvI is a good start, but I want to know if the SMD components which where added are resistors or a before I blow up the PCB ;-)

              1 Reply Last reply
              1
              • frankieF Offline
                frankieF Offline
                frankie
                wrote on last edited by
                #43

                I just found this diagram on the web, have to check it but a first look looks prommising.
                0_1481657701069_IMG_0044.JPG

                TigroenotT 1 Reply Last reply
                0
                • frankieF frankie

                  I just found this diagram on the web, have to check it but a first look looks prommising.
                  0_1481657701069_IMG_0044.JPG

                  TigroenotT Offline
                  TigroenotT Offline
                  Tigroenot
                  wrote on last edited by
                  #44

                  @frankie This diagram shows how a guy fixed his switch that didn't change the rele. But it is quite right. You need to add an optocoupler to connect to the sensor pin with 5,1 pF con to ground and connect the LED to the arduino sensor pin through resistor for the status read. I'll try to find the diagram later.

                  1 Reply Last reply
                  0
                  • TigroenotT Offline
                    TigroenotT Offline
                    Tigroenot
                    wrote on last edited by Tigroenot
                    #45

                    0_1481683810069_07d5c9.jpg

                    The upper part is connection to touch sensor, the lower to status (red LED).

                    1 Reply Last reply
                    0
                    • Nca78N Offline
                      Nca78N Offline
                      Nca78
                      Hardware Contributor
                      wrote on last edited by Nca78
                      #46

                      Thank you very much for the pictures @frankie and @Tigroenot !

                      No 74HC238 on the single switch which can be understood as it's not necessary, with one switch there are enough pins to drive the relay. But it's nicer in the US(AU) world as they are using the same PCB for both and just mounting one relay and one sensor.

                      On the Russian schematic it is not matching the board you have photographed @frankie as it has a 12 pins connector (2x6) instead of 14 (2x7) on yours (and mine, too). From what I see your board is very similar similar to mine with the 74HC238 and the pins are different than on the schematic. I'm a bit confused with this as this schematic seems to manage 2 buttons/relays.

                      HC238 will decode value sent by 3 pins on the connector, and set HIGH one of it's 8 outputs based on the binary value. For example, if input is 000 then output 0 is high, if input is 010 then output 2 is high, etc. All other outputs of the 74HC238 are low.
                      This is done because they are using bistable relays. For each relay there is a SET latch to switch on, and RESET latch to switch off. When it's not switching, the relays stays in it's state without consuming any power. This is a smart way of doing the board to keep it low power, but you need 2 pins for each relay which the PIC controller on the sensor board doesn't have. As they use the 74HC238 they can command up to 4 relays.

                      I used my multimeter and datasheets for the 2ICs to find out how they were connected and this is what I found out for my switch, US(AU) with 1 or 3 buttons/relays. I'm not saying you have the same mapping, you should check the datasheets to find out the input pins on the 74HC238 and verify with your multimeter to which pin of the connector they are connected.

                      Pinout (only for the pins I'm interested in...). Big squares at the top are the mains connectors.
                      0_1481683619752_lvl1.png

                      Pinout of the 74HC238 :
                      0_1481683676647_lvl2.png

                      Values on the connector pins to switch on/off the relays:
                      0_1481683747793_lvl3.png

                      1 Reply Last reply
                      1
                      • DJONvlD Offline
                        DJONvlD Offline
                        DJONvl
                        wrote on last edited by
                        #47

                        https://geektimes.ru/post/258366/ здесь описание библиотеки для эмуляции радио протокола, если получится ее использовать то можно будет подключиться к светодиодам для получения статуса, а управлять с ее помощью

                        1 Reply Last reply
                        0
                        • DJONvlD Offline
                          DJONvlD Offline
                          DJONvl
                          wrote on last edited by
                          #48

                          новая схема силовой платы
                          0_1482161155362_livolo.png

                          1 Reply Last reply
                          2
                          • hekH Offline
                            hekH Offline
                            hek
                            Admin
                            wrote on last edited by
                            #49

                            @DJONvl

                            Could you run your texts through google translate before posting please.

                            1 Reply Last reply
                            1
                            • jirmJ Offline
                              jirmJ Offline
                              jirm
                              wrote on last edited by jirm
                              #50

                              Too I´m start working to provide a universal way to feedback status (for HA) to all my Livolo switches. My main concern is how can get enought supply current to my radio circuit (actually im thinking on ESP8266) from a standard connected switch (only the live AC wire avaible for supply on switch wall case) because needed about 3/5 V with 300 ma (peak when wi-fi are at full work) and I cannot see how the supply circuit in the livolo switch can provide that enough amount of power to supply this element.
                              I cannot see nothing clear how can draw that amount of current trough "any" load connected over the switch...

                              @DJONvl or anyone had well tested what amount of power supply (3V or 5V,) can "secure" draw trough standard connected Livolo switch ?

                              Can any confirm if that circuit arduino+nrf24 have self power supply (additional) and how need connected and mainly how much current drawn arduino+nrf24 when they are full working ?

                              That guys https://www.youtube.com/watch?v=Ny8Rt75he0A had working a circuit (comercial purposes) but seems use aditional power supply for that.

                              Regards

                              1 Reply Last reply
                              0
                              • TigroenotT Offline
                                TigroenotT Offline
                                Tigroenot
                                wrote on last edited by
                                #51

                                Those guys have an additional 12 v power wire in the switch mounting, the wire fore 12v power has been put there during the construction.
                                The power supply in livolo switches is capable to make up to 250mA current. So I suppose it is not possible to feed the esp8266, but more than enough to power the 328p and Nrf24 radio. Currently I have one double button livolo switch running for a week or so with no issues whatsoever. But you have to change the BOD fuses to 1,8 v. Running at 2,7 bod causes reboot at sending data.
                                Drawing more power from livolo power supply is not hard, but your load has to be at least 40w light bulbs.

                                jirmJ 1 Reply Last reply
                                0
                                • TigroenotT Tigroenot

                                  Those guys have an additional 12 v power wire in the switch mounting, the wire fore 12v power has been put there during the construction.
                                  The power supply in livolo switches is capable to make up to 250mA current. So I suppose it is not possible to feed the esp8266, but more than enough to power the 328p and Nrf24 radio. Currently I have one double button livolo switch running for a week or so with no issues whatsoever. But you have to change the BOD fuses to 1,8 v. Running at 2,7 bod causes reboot at sending data.
                                  Drawing more power from livolo power supply is not hard, but your load has to be at least 40w light bulbs.

                                  jirmJ Offline
                                  jirmJ Offline
                                  jirm
                                  wrote on last edited by
                                  #52

                                  @Tigroenot Thank you for your quick reply.
                                  I think additional power supply is not the right path for that, because needed modify all house wiring is a real pain and most costly solution.

                                  If 250ma drawn current is avaiable from livolo switch I think is really so close for the "calculate" needs for a esp8266, so maybe is time to real test it and see what happends but If esp cannot not work properly it does not matter because you say have stable working arduino+nrf24 that is equal good solution or in some cases maybe better than an alone esp.

                                  Maybe we always easily can add one parallel capacitor at loads (any 0,47nf X2 400V rated or livolo can provide someone too) to increase load current drawn if we find that some switch cannot drawn enough power from his load?

                                  Regards

                                  jirmJ 1 Reply Last reply
                                  0
                                  • V Offline
                                    V Offline
                                    Viciousman
                                    wrote on last edited by
                                    #53

                                    Hello Tigroenot, you have the EU version of livolo correct?
                                    Can you please post a schematic on how you performed the Boost to the power supply? I'm using mysensors+nrf24 so I just need arround 20ma power.
                                    Thank you.

                                    1 Reply Last reply
                                    0
                                    • jirmJ jirm

                                      @Tigroenot Thank you for your quick reply.
                                      I think additional power supply is not the right path for that, because needed modify all house wiring is a real pain and most costly solution.

                                      If 250ma drawn current is avaiable from livolo switch I think is really so close for the "calculate" needs for a esp8266, so maybe is time to real test it and see what happends but If esp cannot not work properly it does not matter because you say have stable working arduino+nrf24 that is equal good solution or in some cases maybe better than an alone esp.

                                      Maybe we always easily can add one parallel capacitor at loads (any 0,47nf X2 400V rated or livolo can provide someone too) to increase load current drawn if we find that some switch cannot drawn enough power from his load?

                                      Regards

                                      jirmJ Offline
                                      jirmJ Offline
                                      jirm
                                      wrote on last edited by jirm
                                      #54

                                      @jirm
                                      @Tigroenot .The BOD fuses you mean that we need forced to work the 328p at 1.8V and not at 2.7V as default is usually done?
                                      How do you power the arduino + nrf24 circuit?
                                      From what voltage of the switch livolo and since what "pins" ?.
                                      I am not able to see exactly where to extract the feed (in the real circuit board) of the plate on the livolo (I use the version 2016 EU of switches).
                                      You could put some schematic and / or pics regarding how to connect the feed on the livolo board because in the posts I have seen above I am not able to verify it in what correspond at least to my EU version switches?
                                      regards

                                      1 Reply Last reply
                                      0
                                      • TigroenotT Offline
                                        TigroenotT Offline
                                        Tigroenot
                                        wrote on last edited by Tigroenot
                                        #55

                                        I have the pictures, but I have to resize them so the forum engine accepts. I will do it at work tomorrow.
                                        In two words you need to bypass the big resistor that feeds the transformator and decrease the resistance of the voltage divider that controls the mosfet in the primary coil of the trans. I'll provide the pictures.
                                        Can you please show the lower board of the 2016 model switch?

                                        P. S. And by the way I didn't find a proper way to control the esp switch in domoticz. I need to have two dummy switches - one for state and one for changing state. I used espEasy and Lua scripts both but no luck... With MySensors it is IMHO the proper way :)

                                        jirmJ 2 Replies Last reply
                                        0
                                        • TigroenotT Tigroenot

                                          I have the pictures, but I have to resize them so the forum engine accepts. I will do it at work tomorrow.
                                          In two words you need to bypass the big resistor that feeds the transformator and decrease the resistance of the voltage divider that controls the mosfet in the primary coil of the trans. I'll provide the pictures.
                                          Can you please show the lower board of the 2016 model switch?

                                          P. S. And by the way I didn't find a proper way to control the esp switch in domoticz. I need to have two dummy switches - one for state and one for changing state. I used espEasy and Lua scripts both but no luck... With MySensors it is IMHO the proper way :)

                                          jirmJ Offline
                                          jirmJ Offline
                                          jirm
                                          wrote on last edited by
                                          #56

                                          @Tigroenot Ok I wait your pics. I half understand that you say we need to do but better "see" how do it that not suposse because is easy to kill the switch if that is not do it propperly.
                                          I have same problems than you to post here pics from my switch boards and so on (I have all my house with livolo´s... near 40 switch) and need too some time to take good pics and feet to post it here, but tomorrow can upload some of them.

                                          See you

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          9

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • MySensors
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular