diff --git a/changelog/2021.9.0.rst b/changelog/2021.9.0.rst index 8ec36ed26..795a07bf3 100644 --- a/changelog/2021.9.0.rst +++ b/changelog/2021.9.0.rst @@ -56,6 +56,15 @@ The template selects, numbers and switches now have more validations on them pre If you do not set a ``lambda`` then you are required to make them either ``optimistic: true``, or utilise the ``set_action`` (select/number) / ``turn_on_trigger`` (switch). +Release 2021.9.1 - September 20 +------------------------------- + +- Fix MQTT discovery for sensor state_class :esphomepr:`2331` by :ghuser:`paulmonigatti` +- Light transition fixes :esphomepr:`2320` by :ghuser:`oxan` +- Cease using deprecated Cover methods in automations :esphomepr:`2326` by :ghuser:`oxan` +- Apply color brightness to addressable light effects :esphomepr:`2321` by :ghuser:`oxan` +- Add readv and writev for more efficient API packets :esphomepr:`2342` by :ghuser:`OttoWinter` +- Clean-up sensor integration :esphomepr:`2275` by :ghuser:`oxan` Full list of changes -------------------- diff --git a/components/esp32_camera.rst b/components/esp32_camera.rst index 9c864d2a8..6eab5c8b2 100644 --- a/components/esp32_camera.rst +++ b/components/esp32_camera.rst @@ -214,6 +214,9 @@ Configuration for TTGO T-Camera V162 jpeg_quality: 10 vertical_flip: true horizontal_mirror: false + + # Image settings + name: My Camera # ... Configuration for TTGO T-Camera V17 @@ -259,7 +262,6 @@ Configuration for TTGO T-Journal href_pin: GPIO26 pixel_clock_pin: GPIO21 - # Image settings name: My Camera # ... @@ -285,7 +287,6 @@ Configuration for TTGO-Camera Plus vertical_flip: false horizontal_mirror: false - # Image settings name: My Camera # ... @@ -308,12 +309,33 @@ Configuration for TTGO-Camera Mini href_pin: GPIO25 pixel_clock_pin: GPIO19 + # Image settings + name: My Camera + # ... + +Configuration for ESP-EYE +---------------------------------- +.. code-block:: yaml + + # Example configuration entry + esp32_camera: + external_clock: + pin: GPIO4 + frequency: 20MHz + i2c_pins: + sda: GPIO18 + scl: GPIO23 + data_pins: [GPIO34, GPIO13, GPIO14, GPIO35, GPIO39, GPIO38, GPIO37, GPIO36] + vsync_pin: GPIO5 + href_pin: GPIO27 + pixel_clock_pin: GPIO25 # Image settings name: My Camera # ... + See Also -------- diff --git a/guides/supporters.rst b/guides/supporters.rst index 88745d69b..e6097ed2e 100644 --- a/guides/supporters.rst +++ b/guides/supporters.rst @@ -236,6 +236,7 @@ Contributors - `Fritz Mueller (@fritzm) `__ - `Marc Egli (@frog32) `__ - `mr G1K (@G1K) `__ +- `Aljaž Srebrnič (@g5pw) `__ - `Gabe Cook (@gabe565) `__ - `Gareth Cooper (@gaco79) `__ - `galagaking (@galagaking) `__ @@ -374,6 +375,7 @@ Contributors - `larsonmpdx (@larsonmpdx) `__ - `lein1013 (@lein1013) `__ - `Riku Lindblad (@lepinkainen) `__ +- `Luca Gugelmann (@lgugelmann) `__ - `Juraj Liso (@LiJu09) `__ - `Lazar Obradovic (@lobradov) `__ - `Barry Loong (@loongyh) `__ @@ -713,4 +715,4 @@ Contributors - `ZTX18 (@ZTX18) `__ - `Christian Zufferey (@zuzu59) `__ -*This page was last updated September 16, 2021.* +*This page was last updated September 20, 2021.*