You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Maurice Makaay c6bfe59eef Merge branch 'main' of https://github.com/mmakaay/esphome-yeelight_bs2 into main 3 years ago
doc Merge branch 'main' of https://github.com/mmakaay/esphome-yeelight_bs2 into main 3 years ago
.gitignore Moved to a proper ESPHome component structure. 3 years ago
README.md Improved documentation. 3 years ago
__init__.py Moved to a proper ESPHome component structure. 3 years ago
light.py Added a white light implementation. Firmware is now in a broken state, but transitioning to something good here. 3 years ago
white_light.h Implemented the new white light color space. Transitions still need work. 3 years ago
yeelight_bs2_light_output.h Don't use 10kHz, but 9765Hz for white channel PWM. 3 years ago

README.md

esphome-yeelight_bs2

Installation

Create a folder named custom_components in the folder where your device's yaml configuration file is stored. Then clone the the Github repo into a subfolder yeelight_bs2. For example on the command line:

# mkdir custom_components
# cd custom_components
# git clone https://github.com/mmakaay/esphome-yeelight_bs2 yeelight_bs2

Your folder structure should now look like:

config
├── yourdevice.yaml
├── custom_components/
│   ├── yeelight_bs2/
│   .   ├── README.md
.   .   ├── yeelight_bs2_light_output.h
.       .
        .

Then add the required configuration to your device's yaml configuration file. For an example file, take a look at doc/example.yaml in this repository.

Issue: the device keeps losing its connection to Home Assistant

This is not a problem with the device or the custom firmware, but a problem in the upstream library "AsyncTCP". I did identify the issue and have a proposed fix for it. The issue was reported at:

https://github.com/me-no-dev/AsyncTCP/issues/116

If you want to try out this change, then create a libs folder in the folder where your device's yaml configuration file is stored, and clone the following repository into that folder:

https://github.com/mmakaay/AsyncTCP

For example on the command line:

# mkdir libs
# cd libs
# git clone://github.com/mmakaay/AsyncTCP

Then add a pointer to this folder from within your device's yaml configuration file, using the lib_extra_dirs option. Provide it with the absolute path to your libs folder. The relevant part of the config change looks like this:

esphome:
  platformio_options:
    lib_extra_dirs: /config/libs

This way, the repository version of the library will override the version of the library that is bundled with ESPHome. Build the device firmware and flash the device like you would normally do.