Merge pull request #2224 from esphome/bump-2022.8.0b2

2022.8.0b2
This commit is contained in:
Jesse Hills 2022-08-15 09:09:03 +12:00 committed by GitHub
commit 886e01ce71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 36 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 # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 2022.8.0b1 PROJECT_NUMBER = 2022.8.0b2
# Using the PROJECT_BRIEF tag one can provide an optional one line description # 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 # 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_PATH = ../esphome
ESPHOME_REF = 2022.8.0b1 ESPHOME_REF = 2022.8.0b2
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify .PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify

View File

@ -1 +1 @@
2022.8.0b1 2022.8.0b2

View File

@ -37,6 +37,15 @@ Breaking Changes
- Extend ST7789V component to support additional displays :esphomepr:`3651` by :ghuser:`kbx81` (breaking-change) - Extend ST7789V component to support additional displays :esphomepr:`3651` by :ghuser:`kbx81` (breaking-change)
- Refactor BedJet climate into Hub component :esphomepr:`3522` by :ghuser:`jhansche` (breaking-change) - Refactor BedJet climate into Hub component :esphomepr:`3522` by :ghuser:`jhansche` (breaking-change)
Beta Changes
^^^^^^^^^^^^
- Improve Web view for Climate components :esphomepr:`3706` by :ghuser:`anatoly-savchenkov`
- Add vector include :esphomepr:`3707` by :ghuser:`jesserockz`
- Add state_class total :esphomepr:`3608` by :ghuser:`peterg79`
- add gradient color V2.0 :esphomepr:`3709` by :ghuser:`nielsnl68`
All changes All changes
^^^^^^^^^^^ ^^^^^^^^^^^
@ -106,6 +115,10 @@ All changes
- Bump flake8 from 4.0.1 to 5.0.4 :esphomepr:`3703` by :ghuser:`dependabot[bot]` - Bump flake8 from 4.0.1 to 5.0.4 :esphomepr:`3703` by :ghuser:`dependabot[bot]`
- Bump pylint from 2.14.4 to 2.14.5 :esphomepr:`3697` by :ghuser:`dependabot[bot]` - Bump pylint from 2.14.4 to 2.14.5 :esphomepr:`3697` by :ghuser:`dependabot[bot]`
- Add priority to on_shutdown trigger :esphomepr:`3644` by :ghuser:`RoboMagus` - Add priority to on_shutdown trigger :esphomepr:`3644` by :ghuser:`RoboMagus`
- Improve Web view for Climate components :esphomepr:`3706` by :ghuser:`anatoly-savchenkov`
- Add vector include :esphomepr:`3707` by :ghuser:`jesserockz`
- Add state_class total :esphomepr:`3608` by :ghuser:`peterg79`
- add gradient color V2.0 :esphomepr:`3709` by :ghuser:`nielsnl68`
Past Changelogs Past Changelogs
--------------- ---------------

View File

@ -119,6 +119,24 @@ Multiple ADC Sensors
You can only use as many ADC sensors as your device can support. The ESP8266 only has one ADC and can only handle one sensor at a time. For example, on the ESP8266, you can measure the value of an analog pin (A0 on ESP8266) or VCC (see above) but NOT both simultaneously. Using both at the same time will result in incorrect sensor values. You can only use as many ADC sensors as your device can support. The ESP8266 only has one ADC and can only handle one sensor at a time. For example, on the ESP8266, you can measure the value of an analog pin (A0 on ESP8266) or VCC (see above) but NOT both simultaneously. Using both at the same time will result in incorrect sensor values.
Measuring battery voltage on the Firebeetle ESP32-E
---------------------------------------------------
This board has a internal voltage divider and the battery voltage can easily be measured like this using 11dB attenuation
on GPIO34.
.. code-block:: yaml
- platform: adc
name: "Battery voltage"
pin: GPIO34
accuracy_decimals: 2
update_interval: 60s
attenuation: 11dB
filters:
- multiply: 2.0 # The voltage divider requires us to multiply by 2
This works on SKU:DFR0654. For more information see: `manufacturer's website <https://wiki.dfrobot.com/FireBeetle_Board_ESP32_E_SKU_DFR0654>`__.
See Also See Also
-------- --------

View File

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

View File

@ -899,4 +899,4 @@ Contributors
- `Zack Barett (@zsarnett) <https://github.com/zsarnett>`__ - `Zack Barett (@zsarnett) <https://github.com/zsarnett>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__ - `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated August 10, 2022.* *This page was last updated August 15, 2022.*