|
| 1 | +# Home Assistant (Hass.io) Sonoff Server Integration |
| 2 | + |
| 3 | +Current State => Tested and Working with Sonoff Duel. |
| 4 | +Compatible with this Sonoff Private server: https://github.com/SideCodeIO/Sonoff-Server |
| 5 | + |
| 6 | +This repo is about how to integrate Hass (Home Assistant) with Sonoff devices that are on a private Sonoff server) and define them as light switches (as a custom component). |
| 7 | + |
| 8 | +There is no need to flash the sonoff devices, but you will need to control them via a private sonoff server. |
| 9 | + |
| 10 | +This component is compatible and tested with this sonoff private server: |
| 11 | +https://github.com/SideCodeIO/Sonoff-Server |
| 12 | +Tested with Home Assistant running under docker. |
| 13 | +Tested with Sonoff Dual devices. |
| 14 | + |
| 15 | +Once integrated as a "light" inside Hass, you can fully control it with Hass. |
| 16 | + |
| 17 | + |
| 18 | +A lot of this code is based on the findings and code from these sources: |
| 19 | +* https://github.com/mdopp/simple-sonoff-server (mdopp) |
| 20 | +* https://gist.github.com/gerswin/0cac4f8df4a947b0fec196b84a5e8d8b (gerswin) |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | +# Configuration |
| 27 | +- Create a custom_components under your /config folder. |
| 28 | +- Copy the sonoff folder to your /config/custom_components folder. |
| 29 | +- Copy the config.hs.json into your config folder. |
| 30 | + |
| 31 | +- Add to configuration.yaml: |
| 32 | +```yaml |
| 33 | + |
| 34 | +light: |
| 35 | + - platform: sonoff |
| 36 | + host: "192.168.1.11" |
| 37 | + port: "8088" |
| 38 | + |
| 39 | +``` |
| 40 | +host - is sonoff_server ip (localhost or under docker/diffrent device than the ip of the device/server). |
| 41 | +port - is your sonof server http port. |
| 42 | + |
| 43 | + |
| 44 | +- Add to your sonoff.ha.json file all of your sonoff devices with their device_id. In my case it was a sonoff dual, each channel is a "device", with device_id-0 or device_id-1 |
| 45 | + |
| 46 | +you can check your device ids via sonof_server SERVER_IP:SERVER_HTTP_PORT/devices route. In my case it was: http://192.168.1.11:8088/devices |
| 47 | + |
| 48 | +- Restart Hass. |
| 49 | + |
| 50 | +- Now you should see in the Panel under Configuration > Entity Registry |
| 51 | +all your sonoff devices as lights of type sonoff. |
| 52 | + |
0 commit comments