mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-16 10:55:21 +01:00
commit
886e01ce71
2
Doxygen
2
Doxygen
@ -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 = 2022.8.0b1
|
||||
PROJECT_NUMBER = 2022.8.0b2
|
||||
|
||||
# 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
|
||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
||||
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
|
||||
|
||||
|
@ -1 +1 @@
|
||||
2022.8.0b1
|
||||
2022.8.0b2
|
@ -37,6 +37,15 @@ Breaking Changes
|
||||
- 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)
|
||||
|
||||
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
|
||||
^^^^^^^^^^^
|
||||
|
||||
@ -106,6 +115,10 @@ All changes
|
||||
- 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]`
|
||||
- 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
|
||||
---------------
|
||||
|
@ -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.
|
||||
|
||||
|
||||
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
|
||||
--------
|
||||
|
2
conf.py
2
conf.py
@ -68,7 +68,7 @@ author = "ESPHome"
|
||||
# The short X.Y version.
|
||||
version = "2022.8"
|
||||
# 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
|
||||
# for a list of supported languages.
|
||||
|
@ -899,4 +899,4 @@ Contributors
|
||||
- `Zack Barett (@zsarnett) <https://github.com/zsarnett>`__
|
||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||
|
||||
*This page was last updated August 10, 2022.*
|
||||
*This page was last updated August 15, 2022.*
|
||||
|
Loading…
Reference in New Issue
Block a user