Merge pull request #1714 from esphome/bump-2021.12.0b5

2021.12.0b5
This commit is contained in:
Jesse Hills 2021-12-10 11:02:04 +13:00 committed by GitHub
commit ee4bc8b388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 11 additions and 5 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.12.0b4
PROJECT_NUMBER = 2021.12.0b5
# 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.12.0b4
ESPHOME_REF = 2021.12.0b5
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify

View File

@ -1 +1 @@
2021.12.0b4
2021.12.0b5

View File

@ -119,6 +119,8 @@ Beta Changes
- Feed watchdog while setting up OTA :esphomepr:`2876` by :ghuser:`CarlosGS`
- Use new platform component config blocks for wizard :esphomepr:`2885` by :ghuser:`jesserockz`
- Bump esphome-dashboard to 20211208.0 :esphomepr:`2887` by :ghuser:`jesserockz`
- Fix published state for modbus number :esphomepr:`2894` by :ghuser:`jesserockz`
- Modbus number/output use write single :esphomepr:`2896` by :ghuser:`glmnet`
All changes
^^^^^^^^^^^
@ -214,6 +216,8 @@ All changes
- Feed watchdog while setting up OTA :esphomepr:`2876` by :ghuser:`CarlosGS`
- Use new platform component config blocks for wizard :esphomepr:`2885` by :ghuser:`jesserockz`
- Bump esphome-dashboard to 20211208.0 :esphomepr:`2887` by :ghuser:`jesserockz`
- Fix published state for modbus number :esphomepr:`2894` by :ghuser:`jesserockz`
- Modbus number/output use write single :esphomepr:`2896` by :ghuser:`glmnet`
Past Changelogs
---------------

View File

@ -53,6 +53,7 @@ Configuration variables:
- **write_lambda** (*Optional*, :ref:`lambda <config-lambda>`): Lambda called before send.
Lambda is evaluated before the modbus write command is created.
- **multiply** (*Optional*, float): multiply the new value with this factor before sending the requests. Ignored if lambda is defined.
- **use_write_multiple**: (*Optional*, boolean): By default the modbus command ``Preset Single Registers`` (function code 6) is used for setting the holding register if only 1 register is set. If your device only supports ``Preset Multiple Registers`` (function code 16) set this option to true.
All other options from :ref:`Number <config-number>`.

View File

@ -33,6 +33,7 @@ Configuration variables:
- **multiply** (*Optional*, float): multiply the new value with this factor before sending the requests. Ignored if lambda is defined.
- **offset**: (*Optional*, int): only required for uncommon response encodings
offset from start address in bytes. If more than one register is read a modbus read registers command this value is used to find the start of this datapoint relative to start address. The component calculates the size of the range based on offset and size of the value type
- **use_write_multiple**: (*Optional*, boolean): By default the modbus command ``Preset Single Registers`` (function code 6) is used for setting the holding register if only 1 register is set. If your device only supports ``Preset Multiple Registers`` (function code 16) set this option to true.
All other options from :ref:`Output <config-output>`.

View File

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

View File

@ -760,4 +760,4 @@ Contributors
- `ZTX18 (@ZTX18) <https://github.com/ZTX18>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated December 8, 2021.*
*This page was last updated December 10, 2021.*