diff --git a/CHANGELOG.md b/CHANGELOG.md index 17eea39..3a28d2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Not yet released] - -### Added -- Implemented support for visual feedback during the OTA flashing process in the - `example.yaml` file: the light becomes blue during the process, the brightness bar - represents the update progress, when updating fails the light flashes red and when it - completes successfuly, the light flashes green. - ## [1.1.0] +**Note**: This release requires ESPHome v1.19.0 or newer. + ### Changed - Made it possible to use lambdas with the `preset.activate` automation. This makes it possible to link the action to an api service, which exposes the preset functionality @@ -23,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Thanks to Jos for the heads up! - Made the codebase compatible with ESPHome v1.19.0 ([PR #1657: Introduce new async-def coroutine syntax](https://github.com/esphome/esphome/pull/1657)) + Thanks to @Kaibob2 for giving me a heads up that my code was not compiling anymore! ## [1.0.0] diff --git a/README.md b/README.md index beb6502..379046a 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ aspect of the lamp and to integrate the lamp in your Home Assistant setup. For those who have experience with flashing ESPHome onto devices: -* Make sure you are using ESPHome v1.18.0 or newer. +* Make sure you are using ESPHome v1.19.0 or newer. * Copy [`example.yaml`](example.yaml) to `/.yaml`. * Modify the configuration to your needs (see the [configuration guide](doc/configuration.md)). * Compile the `firmware.bin` file and download it to the device to which you have connected your diff --git a/doc/installation.md b/doc/installation.md index 95c4383..e04ff72 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -2,14 +2,14 @@ # Installation guide -The code must be compiled into a firmware using ESPHome. Therefore, a prerequisite is that you have -ESPHome up and running in some form (command line, docker container, web dashboard, possibly from -within Home Assistant as an add-on). For information on this, please refer to the documentation on -the [ESPHome website](https://esphome.io). +The code must be compiled into a firmware using ESPHome v1.19.0 or later. Therefore, a prerequisite +is that you have ESPHome up and running in some form (command line, docker container, web dashboard, +possibly from within Home Assistant as an add-on). For information on this, please refer to the +documentation on the [ESPHome website](https://esphome.io). The component code is distributed directly from GitHub. You will not have to download and install the code manually. This leverages the [external components](https://esphome.io/components/external_components.html) -feature that was introduced in ESPHome v1.18.0. Therefore, you must use ESPHome v1.18.0 or newer. +feature. Before you can compile the firmware, you will have to create the YAML configuration file for your device. You can take the [`example.yaml`](../example.yaml) from this repository as a starting point, and