This is a small project to extend the functionality of a VELUX INTEGRA Funk-Wandschalter KLI 310
with WiFi. In combination with a MQTT server, Homebridge and some glue logic this can be used to
cheaply make your Velux windows Apple Home Kit compatible, connect it to Homeassistant or similar.
The original remote with its 3 buttons stays functional, we just add a new way to bridge the buttons
via GPIOs of the ESP8266.
Controller Front
Parts
VELUX INTEGRA Wireless Remote KLI 310
USB Power Supply
ESP8266 dev kit, I used a NodeMCU
Cables
Solder
3D printed back
Electronics
Attached Cables
The esp8266 pulls down the GPIOs to simulate button presses. The remote uses a common ground.
The Remote usually runs on 3V (2x AAA), so the ESP8266 can be powered from the same source.
To bridge the buttons, I soldered cables to the button contacts and connected them to the ESP8266.
The availability of test point pads on the remote PCB made this very easy.
Color
Signal/Usage
Black
To common GND -> ESP8266 GND
Red
3.3V Output of the ESP8266 dev kit VReg out -> ESP8266 3.3V
Green
Up Button -> ESP8266 GPIO14
Blue
Stop Button -> ESP8266 GPIO12
Yellow
Down Button -> ESP8266 GPIO13
3D Printed Parts
To fit the ESP8266 I designed a simple replacement back for the available on
Prusa Printables.
It snaps together with the original front and has holes for mounting it to a wall.
#include<WiFiClientSecure.h>#include<PubSubClient.h>#include<ESP8266WiFi.h>constchar*ssid="WiFi-SSID";constchar*password="WiFI-PASSWORD";constchar*mqtt_server="SERVER-IP";constchar*mqtt_username="MQTT-USER";constchar*mqtt_password="MQTT-PASSWORD";constchar*mqtt_topic="velux_remote/commands";uint8_tdown_gpio=14;uint8_tstop_gpio=12;uint8_tup_gpio=13;WiFiClientSecureespClient;PubSubClientclient(espClient);voidcallback(char*topic,byte*message,unsignedintlength);voidreconnect();voidsetup(){Serial.begin(115200);WiFi.begin(ssid,password);// Setup GPIOs
pinMode(down_gpio,OUTPUT);pinMode(stop_gpio,OUTPUT);pinMode(up_gpio,OUTPUT);digitalWrite(down_gpio,HIGH);digitalWrite(stop_gpio,HIGH);digitalWrite(up_gpio,HIGH);while(WiFi.status()!=WL_CONNECTED){delay(500);Serial.print("Connecting to ");Serial.println(ssid);}Serial.print("Connected with IP: ");Serial.println(WiFi.localIP());// openssl x509 -noout -fingerprint -sha1 -inform pem -in server.crt
espClient.setFingerprint("A6 AE 85 65 63 DD D8 7C 70 F7 92 73 DE 8F 18 2B 9F DA 0A 76");// while (!client.connected())
client.setServer(mqtt_server,8883);client.setCallback(callback);while(true){if(!client.connected()){reconnect();}else{yield();client.loop();// ESP32 will be able to write received datas to UART monitor
}}for(inti=0;i<=1000;i++){charpayload[10];itoa(i,payload,10);client.publish("DemoTopic",payload);}}voidloop(){}voidpushButton(uint8_tgpio){digitalWrite(gpio,LOW);delay(1000);digitalWrite(gpio,HIGH);}voidcallback(char*topic,byte*message,unsignedintlength){Serial.print("Message arrived on topic: ");Serial.print(topic);Serial.print(". Message: ");StringmessageTemp;for(uinti=0;i<length;i++){messageTemp+=(char)message[i];}Serial.println(messageTemp);if(messageTemp=="up"){pushButton(up_gpio);}elseif(messageTemp=="down"){pushButton(down_gpio);}elseif(messageTemp=="stop"){pushButton(stop_gpio);}Serial.println();}voidreconnect(){// Loop until we're reconnected
while(!client.connected()){Serial.print("Attempting MQTT connection...");// Attempt to connect
if(client.connect("ESP32Client",mqtt_username,mqtt_password)){Serial.println("connected");client.subscribe(mqtt_topic);Serial.println("Subscribed to DemoTopic");}else{Serial.print("failed, rc=");Serial.print(client.state());Serial.println(" try again in 5 seconds");// Wait 5 seconds before retrying
delay(5000);}}}