livolo Glass Panel Touch Light Wall Switch + arduino 433Mhz
-
@Nca78 yep. sure I thought about this. it depends also of the quantity, as locals are not always the cheaper, at least where I live lol. about the sensor, I use gesture (more hygienic and cool) so it's more complicated than common sensor. and no cheap eval board so I made mine and variant for those interested. but you will see, I will show sure ;)
-
@Nca78 yep. sure I thought about this. it depends also of the quantity, as locals are not always the cheaper, at least where I live lol. about the sensor, I use gesture (more hygienic and cool) so it's more complicated than common sensor. and no cheap eval board so I made mine and variant for those interested. but you will see, I will show sure ;)
-
@Samuel235 said:
@Nca78 - Thank you for that link for a price comparison, looks tempting.
You're welcome. I ordered the three size of plates to see how I can use them in my home. I will test with TTP and MPR121 and give a feedback.
@scalz made me look for gesture sensors and I discovered the ADPS 9960, it was too tempting not to order one, can't wait to receive and play with it !
-
@Samuel235 said:
@Nca78 - Thank you for that link for a price comparison, looks tempting.
You're welcome. I ordered the three size of plates to see how I can use them in my home. I will test with TTP and MPR121 and give a feedback.
@scalz made me look for gesture sensors and I discovered the ADPS 9960, it was too tempting not to order one, can't wait to receive and play with it !
@Nca78 said:
@scalz made me look for gesture sensors and I discovered the ADPS 9960, it was too tempting not to order one, can't wait to receive and play with it !
I'm also now looking up these. Times like this i wished i had a workshop to manufacture things like a switch plate myself out of plexi with a gesture sensor behind with leds lighting the frosted plate up as you signal movements to the sensor.
-
@Samuel235 stop looking in my mind :) I have already some working proto though for the plate pcb ;) but I'm waiting a bit for posting vids, I have others projects to show running in vid before this one. or maybe I will show everything at same time. i don't know yet :) I miss a bit of time..
-
@Samuel235 stop looking in my mind :) I have already some working proto though for the plate pcb ;) but I'm waiting a bit for posting vids, I have others projects to show running in vid before this one. or maybe I will show everything at same time. i don't know yet :) I miss a bit of time..
@scalz said:
@Samuel235 stop looking in my mind :) I have already some working proto though for the plate pcb ;) but I'm waiting a bit for posting vids, I have others projects to show running in vid before this one. or maybe I will show everything at same time. i don't know yet :) I miss a bit of time..
Damn you! Stop stealing my aspirations! Please, just make sure you share the products with us!
-
I think if you want to reuse the livolo that won't be easy. I have one livolo, without radio and no dimmer. So it uses relay. I know about the mosfet version. I think mosfet is nice too.
I have already unpacked it and checked some electricals connection because I was thinking to hack it. But I think this is too much pain for maybe not great results.
On mine, the brain mcu is on the capacitive plate (a microchip mcu). I have not tried to access/change fw of the mcu though but I thought, well, I could do another plate and reuse relay board, easy!..but then there is the radio. Reuse the livolo one? some work, not the best perf, no state back.. Use my rfm69 radio (I prefer 868 than 433) ? I'm not sure the livolo can provide power I need etc... so it could put me on a tricky road for not great results, looking not good inside the box..
Too bad! Because my livolo is well built and I like the glass plate. I want the glass plate!! It's cheap and you have the whole enclosure.
So finally, I have a project in progress where I do everything from scratch, with glass plate and gesture, yep ;) but I don't know yet when it will be finished as I have a few other things to finish.@scalz said:
On mine, the brain mcu is on the capacitive plate (a microchip mcu). I have not tried to access/change fw of the mcu though but I thought, well, I could do another plate and reuse relay board, easy!..but then there is the radio. Reuse the livolo one? some work, not the best perf, no state back.. Use my rfm69 radio (I prefer 868 than 433) ? I'm not sure the livolo can provide power I need etc... so it could put me on a tricky road for not great results, looking not good inside the box..
Hello, I have ordered one full livolo switch, single button with no radio.
And I think I will disagree with you on this :)I've soldered some pins on the available headers (next to the 2*7 connector) and plugged a sensor on the GND and 3V pins.
The switch is still running fine, led on and I can switch the lights on and off. The sensor is running and sending data very reliably at the moment meaning even on the non-radio version of the switch the power is clean enough for NRF24 radio. This is true for both lights on and off.It might not be true when using the 4 switches version with all relays on, but this is making me very confident about the 2/3 switches version which would fill my needs.
I'm using US sized switches also, so maybe (probably) the power supply is not the same on the EU sized switches that has a maximum of 2 relays.
-
this guy did some work on this:
https://www.youtube.com/watch?v=ykqv4bZ9zb0 -
this guy did some work on this:
https://www.youtube.com/watch?v=ykqv4bZ9zb0@Cristian-Tone said:
this guy did some work on this:
https://www.youtube.com/watch?v=ykqv4bZ9zb0Yes I have seen it but it's a completely different concept. They reprogram the PIC on the sensor board so it will send data to a computer over serial. And last time I saw it they had to change the relays also to put 5V relays instead of 12V.
It's much cleaner to just replace the sensor board and communicate through radio... -
@Cristian-Tone said:
this guy did some work on this:
https://www.youtube.com/watch?v=ykqv4bZ9zb0Yes I have seen it but it's a completely different concept. They reprogram the PIC on the sensor board so it will send data to a computer over serial. And last time I saw it they had to change the relays also to put 5V relays instead of 12V.
It's much cleaner to just replace the sensor board and communicate through radio...@Nca78 Indeed, I've done some more research on this too and I agree with you, it would have been nice though. :)
-
к сожалению не говорю по английски, вот код для ясности :smiley:
#include <SPI.h> #include <MySensor.h> #include <Bounce2.h> #define sensor_PIN 6 #define RELAY_PIN A3 // Arduino Digital I/O pin number for relay #define BUTTON_PIN 5 // Arduino Digital I/O pin number for button #define CHILD_ID 1 // Id of the sensor child #define RELAY_ON 1 #define RELAY_OFF 0 Bounce debouncer = Bounce(); int oldValue=0; bool state; bool sens; MySensor gw; MyMessage msg(CHILD_ID,V_LIGHT); void setup() { delay(2400); gw.begin(incomingMessage, AUTO, true); // Send the sketch version information to the gateway and Controller // gw.sendSketchInfo("Livolo", "1.0"); // Setup the button pinMode(BUTTON_PIN,INPUT); pinMode(sensor_PIN,INPUT); // Activate internal pull-up digitalWrite(BUTTON_PIN,HIGH); // After setting up the button, setup debouncer debouncer.attach(BUTTON_PIN); debouncer.interval(5); // Register all sensors to gw (they will be created as child devices) gw.present(CHILD_ID, S_LIGHT); delay(1400); // Make sure relays are off when starting up digitalWrite(RELAY_PIN, RELAY_OFF); // Then set relay pins in output mode pinMode(RELAY_PIN, OUTPUT); // Set relay to last known state (using eeprom storage) // state = gw.loadState(CHILD_ID); //digitalWrite(RELAY_PIN, state?RELAY_ON:RELAY_OFF); state=false; } /* * Example on how to asynchronously check for new messages from gw */ void loop() { gw.process(); //debouncer.update(); // Get the update value int value =digitalRead(sensor_PIN); if (value==1){ state=true; }else{ state=false; } if (value != oldValue) { gw.send(msg.set(state), true); // Send new state and request ack back } oldValue = value; } void incomingMessage(const MyMessage &message) { if (message.type == V_LIGHT) { // Change relay state bool instate = message.getBool(); while(instate!=state){ digitalWrite(RELAY_PIN, RELAY_ON); delay(60); digitalWrite(RELAY_PIN, RELAY_OFF); delay(60); int value =digitalRead(sensor_PIN); if (value==1){ state=true; }else{ state=false; } } } } -
Sorry if this already has been covered in the thread but I can't find the info. When looking at ebay it looks like the connectors are L = in, L1, = out (for one way). But how are the radio/touch etc powered? is there also a battery inside or can you power the switch without neutral wire?
-
Sorry if this already has been covered in the thread but I can't find the info. When looking at ebay it looks like the connectors are L = in, L1, = out (for one way). But how are the radio/touch etc powered? is there also a battery inside or can you power the switch without neutral wire?
@Cliff-Karlsson it takes the voltage from live wire only. It generates a light voltage drop and from there gets enough power to run the circuit.
The downside is it constantly have to leak a bit of current through the live wire, so if you have a small light connected to it it might flicker. Livolo sells some small unit you can connect to your load and that will let the current pass and save your lights from premature death because of flickering. But it all depends on the light bulbs and also on the quality/efficiency of the switches. -
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 :)
-
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; } } } -
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; } } }@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. -
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. -
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.

