This is an old revision of the document!
It would be very convenient to turn on the lights in the base automatically when someone opens it.
There are some smart sockets out there, but most of them connect to external servers and require some special kind of software.
If the vendor decides to shut down their server we couldn't use our devices anymore.
The Sonoff S20 uses a ESP8266 and can be flashed with alternative firmware.
Depending on the firmware it will then support other protocols.
The device is also relatively cheap.
The ESP8266 GPIO 12 is connected to the relay (1=on, 0=off).
The GPIO 0 is connected to the push button.
Sonoff | FTDI |
---|---|
PIN 1 - VCC | PIN 3 - VCC |
PIN 2 - RX | PIN 4 - TX |
PIN 3 - TX | PIN 5 - RX |
PIN 4 - GND | PIN 1 - GND |
on Button#State=1 do if [Relay#State]=0 gpio,12,1 else gpio,12,0 endif endon