Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shbatm/esphome-milight
This is a replacement for a Milight/LimitlessLED remote/gateway hosted on an ESP8266 based on the work of Henryk Plötz, sidoh, and hencou
https://github.com/shbatm/esphome-milight
Last synced: about 1 month ago
JSON representation
This is a replacement for a Milight/LimitlessLED remote/gateway hosted on an ESP8266 based on the work of Henryk Plötz, sidoh, and hencou
- Host: GitHub
- URL: https://github.com/shbatm/esphome-milight
- Owner: shbatm
- License: mit
- Created: 2022-01-02T21:27:39.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-01T19:50:24.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T14:39:57.134Z (7 months ago)
- Language: C++
- Size: 145 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MiLight Library for ESPhome
This is a fork of Sidoh's Milight Hub: https://github.com/sidoh/esp8266_milight_hub/
This library is used with ESPHome, see the custom component in this repo: https://github.com/hencou/esphome_components
Below the original text of Sidoh's Milight Hub with slight modifications:
# esp8266_milight_hub/switch
This is a replacement for a Milight/LimitlessLED remote/gateway hosted on an ESP8266. Leverages [Henryk Plötz's awesome reverse-engineering work](https://hackaday.io/project/5888-reverse-engineering-the-milight-on-air-protocol).[Milight bulbs](https://www.amazon.com/Mi-light-Dimmable-RGBWW-Spotlight-Smart/dp/B01LPRQ4BK/r) are cheap smart bulbs that are controllable with an undocumented 2.4 GHz protocol. In order to control them, you either need a [remote](https://www.amazon.com/Mi-light-Dimmable-RGBWW-Spotlight-Smart/dp/B01LCSALV6/r?th=1) ($13), which allows you to control them directly, or a [WiFi gateway](http://futlight.com/productlist.aspx?typeid=125) ($30), which allows you to control them with a mobile app or a [UDP protocol](https://github.com/Fantasmos/LimitlessLED-DevAPI).
[This guide](http://blog.christophermullins.com/2017/02/11/milight-wifi-gateway-emulator-on-an-esp8266/) on my blog details setting one of these up.
## Why this is useful
1. Both the remote and the WiFi gateway are limited to four groups. This means if you want to control more than four groups of bulbs, you need another remote or another gateway. This project allows you to control 262,144 groups (4*2^16, the limit imposed by the protocol).
2. This project exposes a nice ESPHome API to control your bulbs.## Supported remotes
The following remotes can be emulated:
Support has been added for the following [bulb types](http://futlight.com/productlist.aspx?typeid=101):
Model #|Name|Compatible Bulbs
-------|-----------|----------------
|FUT096|RGB/W||CCT|
- FUT014
- FUT016
- FUT103
|
|FUT005
FUT006
FUT007|
- FUT011
- FUT017
- FUT019
|FUT098|RGB|Most RGB LED Strip Controlers|
|FUT020|RGB|Some other RGB LED strip controllers|
|FUT092|RGB/CCT||
- FUT012
- FUT013
- FUT014
- FUT015
- FUT103
- FUT104
- FUT105
- Many RGB/CCT LED Strip Controllers
|FUT091|CCT v2|Most newer dual white bulbs and controllers|
|FUT089|8-zone RGB/CCT|Most newer rgb + dual white bulbs and controllers|Other remotes or bulbs, but have not been tested.
## What you'll need
1. An ESP8266. I used a Wemos D1 Mini.
2. A NRF24L01+ module (~$3 on ebay). Alternatively, you can use a LT8900.
3. Some way to connect the two (7 female/female dupont cables is probably easiest).
4. 10 uF capacitor between power supply and NRF24L01+
5. HLK-PM03 3V3 Power supply, or HLK-PM01 5V to support RCWL-0516 radar sensor (optional)## Installing
#### Connecting GPIO
I used a Wemos D1 mini because it's very small to fit behind a wall switch.
* Use free GPIO inputs as input from wall switch to control groups 1-3. LOW is active state. Use a push switch or touch sensor like TTP223, solder jumper A on TTP223 to achieve active LOW output.
* Use free GPIO input for a DS18B20 temperature sensor, or RCWL-0516 radar sensor#### Connect the NRF24L01+ / LT8900
This project is compatible with both NRF24L01 and LT8900 radios. LT8900 is the same model used in the official MiLight devices. NRF24s are a very common 2.4 GHz radio device, but require software emulation of the LT8900's packet structure. As such, the LT8900 is more performant.
Both modules are SPI devices and should be connected to the standard SPI pins on the ESP8266.
##### NRF24L01+
[This guide](https://www.mysensors.org/build/connect_radio#nrf24l01+-&-esp8266) details how to connect an NRF24 to an ESP8266. By default GPIO 4 for CE and GPIO 15 for CSN are used.
On a Wemos D1 mini:
|Wemos GPIO |NRF24 |Color |
|-----------|-------|------|
|GND |GND |Black |
|3V3 |VCC |Red |
|D2 GPIO4 |CE |Orange|
|D5 GPIO14 |SCK |Green |
|D6 GPIO12 |MISO |Violet|
|D7 GPIO13 |MOSI |Blue |
|D8 GPIO15 |CSN |Yellow|* Do not mount the NRF24 and ESP12 antennas against each other. This will cause bad performance and crashes
_Image source: [MySensors.org](https://mysensors.org)_
##### LT8900
Connect SPI pins (CE, SCK, MOSI, MISO) to appropriate SPI pins on the ESP8266. With default settings, connect RST to GPIO 0, PKT to GPIO 16, CE to GPIO 4, and CSN to GPIO 15. Make sure to properly configure these if using non-default pinouts.
#### Setting up the ESP
The goal here is to flash your ESP with the firmware. This should be done with ESPHome.
* Create a yaml file with the example provided.#### Pair Bulbs
If you need to pair some bulbs, how to do this is [described in the wiki](https://github.com/sidoh/esp8266_milight_hub/wiki/Pairing-new-bulbs).
* When the ESPHome module is deployed in "DEBUG" mode, it will log received and decoded packets to determine Device and Group id's from your existing remotes