Merge pull request #3231 from esphome/bump-2023.9.3

2023.9.3
This commit is contained in:
Jesse Hills 2023-10-03 21:26:16 +13:00 committed by GitHub
commit fffe82f052
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 22 additions and 10 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 = 2023.9.2
PROJECT_NUMBER = 2023.9.3
# 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 = 2023.9.2
ESPHOME_REF = 2023.9.3
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify

View File

@ -1 +1 @@
2023.9.2
2023.9.3

View File

@ -57,6 +57,16 @@ Release 2023.9.2 - October 2
- Fix SPI support for second bus on 2023.9.1 :esphomepr:`5456` by :ghuser:`angelnu`
- Ensure esphome directory exists on addon startup :esphomepr:`5464` by :ghuser:`jesserockz`
Release 2023.9.3 - October 3
----------------------------
- Bump zeroconf from 0.112.0 to 0.115.0 :esphomepr:`5432` by :ghuser:`dependabot[bot]`
- add pin config for denky_d4 :esphomepr:`5471` by :ghuser:`alucryd`
- Support RP2040 hardware SPI :esphomepr:`5466` by :ghuser:`clydebarrow`
- Bump zeroconf from 0.115.0 to 0.115.1 :esphomepr:`5470` by :ghuser:`dependabot[bot]`
- Sleep mode fix for BP5758D driver :esphomepr:`5461` by :ghuser:`dwildstr`
- Tuya Number: split "multiply" to a separate option :esphomepr:`5458` by :ghuser:`paravoid`
Breaking Changes
----------------

View File

@ -48,9 +48,9 @@ Based on this, you can create a number as follows:
max_value: 2
step: 1
The value for ``step`` is used as the scaling factor for the Number. All numbers in Tuya are integers, so a scaling factor is sometimes needed to convert the Tuya reported value into floating point.
The value for ``multiply`` is used as the scaling factor for the Number. All numbers in Tuya are integers, so a scaling factor is sometimes needed to convert the Tuya reported value into floating point.
For instance, assume we have a pH sensor that reads from 0.00 to 15.00 with a scaling of 0.01. By setting `step` to 0.01, on the Tuya side (not visible to the user) the number will be reported as an integer from 0 to 1500. The following configuration could be used:
For instance, assume we have a pH sensor that reads from 0.00 to 15.00 with a scaling of 0.01. By setting ``multiply`` to 100, on the Tuya side (not visible to the user) the number will be reported as an integer from 0 to 1500. The following configuration could be used:
.. code-block:: yaml
@ -59,7 +59,7 @@ For instance, assume we have a pH sensor that reads from 0.00 to 15.00 with a sc
number_datapoint: 106
min_value: 0.00
max_value: 15.00
step: 0.01
multiply: 100
Configuration variables:
------------------------
@ -69,7 +69,9 @@ Configuration variables:
- **number_datapoint** (**Required**, int): The datapoint id number of the number.
- **min_value** (**Required**, float): The minimum value this number can be.
- **max_value** (**Required**, float): The maximum value this number can be.
- **step** (**Required**, float): The granularity with which the number can be set.
- **step** (**Optional**, float): The granularity with which the number can be set. Defaults to 1.
- **multiply** (**Optional**, float): multiply the new value with this factor before sending the requests.
- All other options from :ref:`Number <config-number>`.
See Also

View File

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

View File

@ -771,7 +771,6 @@ Contributors
- `Scott Cappellani (@maeneak) <https://github.com/maeneak>`__
- `Magnus Nordlander (@magnusnordlander) <https://github.com/magnusnordlander>`__
- `majbthrd (@majbthrd) <https://github.com/majbthrd>`__
- `Major Péter (@majorpeter) <https://github.com/majorpeter>`__
- `Kasper Malfroid (@malfroid) <https://github.com/malfroid>`__
- `Malle355 (@Malle355) <https://github.com/Malle355>`__
- `raymonder jin (@mamil) <https://github.com/mamil>`__
@ -929,6 +928,7 @@ Contributors
- `Derrick Lyndon Pallas (@pallas) <https://github.com/pallas>`__
- `Panuruj Khambanonda (PK) (@panuruj) <https://github.com/panuruj>`__
- `Daniel Mahaney (@Papa-DMan) <https://github.com/Papa-DMan>`__
- `Faidon Liambotis (@paravoid) <https://github.com/paravoid>`__
- `Patrick Collins (@patrickcollins12) <https://github.com/patrickcollins12>`__
- `Paul Deen (@PaulAntonDeen) <https://github.com/PaulAntonDeen>`__
- `Paul Monigatti (@paulmonigatti) <https://github.com/paulmonigatti>`__
@ -1246,4 +1246,4 @@ Contributors
- `Zsolt Zsiros (@ZsZs73) <https://github.com/ZsZs73>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated October 2, 2023.*
*This page was last updated October 3, 2023.*