Merge pull request #1560 from esphome/bump-2021.10.2

2021.10.2
This commit is contained in:
Otto Winter 2021-10-22 18:35:46 +02:00 committed by GitHub
commit 424ac3f228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 34 additions and 11 deletions

View File

@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 2021.10.1
PROJECT_NUMBER = 2021.10.2
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -1,5 +1,5 @@
ESPHOME_PATH = ../esphome
ESPHOME_REF = 2021.10.1
ESPHOME_REF = 2021.10.2
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify

View File

@ -1 +1 @@
2021.10.1
2021.10.2

View File

@ -125,6 +125,24 @@ Release 2021.10.1 - October 21
- Fix platformio version in Dockerfile doesn't match requirements :esphomepr:`2582` by :ghuser:`OttoWinter`
- Fix platformio_install_deps no longer installing all lib_deps :esphomepr:`2584` by :ghuser:`OttoWinter`
Release 2021.10.2 - October 22
------------------------------
- Fix HeatpumpIR pin :esphomepr:`2585` by :ghuser:`OttoWinter`
- Fix PlatformIO version for latest Arduino framework :esphomepr:`2590` by :ghuser:`oxan`
- Fix pin/component switchup in SX1509 pin configuration :esphomepr:`2593` by :ghuser:`oxan`
- Fix old-style `arduino_version` on ESP8266 and with magic values :esphomepr:`2591` by :ghuser:`oxan`
- Bump esphome-dashboard from 20211021.0 to 20211021.1 :esphomepr:`2594` by :ghuser:`dependabot[bot]`
- Fix validation of addressable light IDs :esphomepr:`2588` by :ghuser:`oxan`
- Fix socket connection closed not detected :esphomepr:`2587` by :ghuser:`OttoWinter`
- Bump noise-c from 0.1.3 to 0.1.4 :esphomepr:`2602` by :ghuser:`OttoWinter`
- Add OTA upload compression for ESP8266 :esphomepr:`2601` by :ghuser:`OttoWinter`
- Re-raise keyboardinterrupt :esphomepr:`2603` by :ghuser:`OttoWinter`
- Add owner to all libraries used :esphomepr:`2604` by :ghuser:`OttoWinter`
- Fix compiler warnings and update platformio line filter :esphomepr:`2607` by :ghuser:`OttoWinter`
- Fix ESP8266 OTA compression only starting framework v2.7.0 :esphomepr:`2610` by :ghuser:`OttoWinter`
- Bugfix tca9548a and idf refactor anh :esphomepr:`2612` by :ghuser:`andreashergert1984`
Full list of changes
--------------------

View File

@ -10,6 +10,7 @@ The TCA9548A component allows you to use TCA9548A as a I²C multiplexer
`AdaFruit`_) in ESPHome. It uses :ref:`I²C Bus <i2c>` for communication.
Once configured, you can use any of the 8 channels (TCA9548A) as separated channels for your projects.
Every Channel acts for all connected components as a virtual I²C Bus.
.. figure:: images/tca9548a.jpg
@ -27,15 +28,16 @@ Once configured, you can use any of the 8 channels (TCA9548A) as separated chann
- address: 0x70
id: multiplex0
i2c_id: i2c0
scan: true
channels:
- bus_id: multiplex0channel0
channel: 0
- bus_id: multiplex0channel1
channel: 1
# Individual I2C Devices
sensor:
- platform: bmp280
multiplexer:
id: multiplex0
channel: 0
...
i2c_id: multiplex0channel1
Configuration variables:
~~~~~~~~~~~~~~~~~~~~~~~~
@ -44,8 +46,11 @@ Configuration variables:
- **address** (*Optional*, int): The I²C address of the Multiplexer.
Defaults to ``0x70``.
- **i2c_id** (*Optional*): The I²C Bus ID
- **scan** (*Optional*, bool): if the channel should be scanned
Defaults to ``false``
- **channels** (*Optional*): The I²C Bus Channels
- **bus_id** (**Required**, :ref:`config-id`): The id to use for this virtual I2C Bus.
- **channel** (**Required**): The channel (0-7) to use for this virtual I2C Bus.
See Also
--------

View File

@ -69,7 +69,7 @@ author = "Otto Winter"
# The short X.Y version.
version = "2021.10"
# The full version, including alpha/beta/rc tags.
release = "2021.10.1"
release = "2021.10.2"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -734,4 +734,4 @@ Contributors
- `ZTX18 (@ZTX18) <https://github.com/ZTX18>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated October 21, 2021.*
*This page was last updated October 22, 2021.*