mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-01-27 22:31:37 +01:00
commit
a6127866bf
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 = 2024.8.0b3
|
||||
PROJECT_NUMBER = 2024.8.0b4
|
||||
|
||||
# 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 = 2024.8.0b3
|
||||
ESPHOME_REF = 2024.8.0b4
|
||||
PAGEFIND_VERSION=1.1.0
|
||||
PAGEFIND=pagefind
|
||||
NET_PAGEFIND=../pagefindbin/pagefind
|
||||
|
@ -1 +1 @@
|
||||
2024.8.0b3
|
||||
2024.8.0b4
|
@ -93,6 +93,10 @@ Beta Changes
|
||||
- [lvgl] Bug fixes :esphomepr:`7300` by :ghuser:`clydebarrow`
|
||||
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
|
||||
- [microphone] Fix header includes :esphomepr:`7310` by :ghuser:`jesserockz`
|
||||
- Fix RP2040 Neopixel flickering issue :esphomepr:`7307` by :ghuser:`deCodeIt`
|
||||
- add the ability to add more idf components to an existing setup :esphomepr:`7302` by :ghuser:`nielsnl68`
|
||||
- Fix waveshare 2.13" epaper stride calculation error :esphomepr:`7303` by :ghuser:`serialx`
|
||||
- [rtttl] fix STOPPED state :esphomepr:`7323` by :ghuser:`NewoPL`
|
||||
|
||||
All changes
|
||||
^^^^^^^^^^^
|
||||
@ -240,6 +244,10 @@ All changes
|
||||
- [lvgl] Bug fixes :esphomepr:`7300` by :ghuser:`clydebarrow`
|
||||
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
|
||||
- [microphone] Fix header includes :esphomepr:`7310` by :ghuser:`jesserockz`
|
||||
- Fix RP2040 Neopixel flickering issue :esphomepr:`7307` by :ghuser:`deCodeIt`
|
||||
- add the ability to add more idf components to an existing setup :esphomepr:`7302` by :ghuser:`nielsnl68`
|
||||
- Fix waveshare 2.13" epaper stride calculation error :esphomepr:`7303` by :ghuser:`serialx`
|
||||
- [rtttl] fix STOPPED state :esphomepr:`7323` by :ghuser:`NewoPL`
|
||||
|
||||
Past Changelogs
|
||||
---------------
|
||||
|
@ -69,12 +69,30 @@ Some sensors such as the :doc:`HLW8012 <hlw8012>` expose their power sensor with
|
||||
- multiply: 0.001
|
||||
unit_of_measurement: kW
|
||||
|
||||
Lifetime instead of Daily
|
||||
-------------------------
|
||||
|
||||
For a more-generic version of this component which does not reset every midnight, see :doc:`integration`, which can provide device-lifetime values instead of daily values with the following example settings:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
# Example configuration entry
|
||||
sensor:
|
||||
- platform: integration
|
||||
name: 'Total Energy'
|
||||
sensor: my_power
|
||||
time_unit: h
|
||||
restore: true
|
||||
state_class: total_increasing
|
||||
device_class: energy
|
||||
|
||||
See Also
|
||||
--------
|
||||
|
||||
- :ref:`sensor-filters`
|
||||
- :doc:`hlw8012`
|
||||
- :doc:`cse7766`
|
||||
- :doc:`integration`
|
||||
- :doc:`/components/sensor/pulse_counter`
|
||||
- :doc:`/components/sensor/pulse_meter`
|
||||
- :doc:`/components/time/homeassistant`
|
||||
|
2
conf.py
2
conf.py
@ -69,7 +69,7 @@ author = "ESPHome"
|
||||
# The short X.Y version.
|
||||
version = "2024.8"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "2024.8.0b3"
|
||||
release = "2024.8.0b4"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -429,6 +429,7 @@ Contributors
|
||||
- `DeadEnd (@DeadEnded) <https://github.com/DeadEnded>`__
|
||||
- `Debashish Sahu (@debsahu) <https://github.com/debsahu>`__
|
||||
- `declanshanaghy (@declanshanaghy) <https://github.com/declanshanaghy>`__
|
||||
- `Ali Jafri (@deCodeIt) <https://github.com/deCodeIt>`__
|
||||
- `Maximilian (@DeerMaximum) <https://github.com/DeerMaximum>`__
|
||||
- `definitio (@definitio) <https://github.com/definitio>`__
|
||||
- `deftdawg (@deftdawg) <https://github.com/deftdawg>`__
|
||||
@ -1932,4 +1933,4 @@ Contributors
|
||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
|
||||
|
||||
*This page was last updated August 19, 2024.*
|
||||
*This page was last updated August 21, 2024.*
|
||||
|
Loading…
Reference in New Issue
Block a user