mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-02-04 23:52:18 +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
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# 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
|
# 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
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
ESPHOME_PATH = ../esphome
|
ESPHOME_PATH = ../esphome
|
||||||
ESPHOME_REF = 2024.8.0b3
|
ESPHOME_REF = 2024.8.0b4
|
||||||
PAGEFIND_VERSION=1.1.0
|
PAGEFIND_VERSION=1.1.0
|
||||||
PAGEFIND=pagefind
|
PAGEFIND=pagefind
|
||||||
NET_PAGEFIND=../pagefindbin/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`
|
- [lvgl] Bug fixes :esphomepr:`7300` by :ghuser:`clydebarrow`
|
||||||
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
|
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
|
||||||
- [microphone] Fix header includes :esphomepr:`7310` by :ghuser:`jesserockz`
|
- [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
|
All changes
|
||||||
^^^^^^^^^^^
|
^^^^^^^^^^^
|
||||||
@ -240,6 +244,10 @@ All changes
|
|||||||
- [lvgl] Bug fixes :esphomepr:`7300` by :ghuser:`clydebarrow`
|
- [lvgl] Bug fixes :esphomepr:`7300` by :ghuser:`clydebarrow`
|
||||||
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
|
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
|
||||||
- [microphone] Fix header includes :esphomepr:`7310` by :ghuser:`jesserockz`
|
- [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
|
Past Changelogs
|
||||||
---------------
|
---------------
|
||||||
|
@ -69,12 +69,30 @@ Some sensors such as the :doc:`HLW8012 <hlw8012>` expose their power sensor with
|
|||||||
- multiply: 0.001
|
- multiply: 0.001
|
||||||
unit_of_measurement: kW
|
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
|
See Also
|
||||||
--------
|
--------
|
||||||
|
|
||||||
- :ref:`sensor-filters`
|
- :ref:`sensor-filters`
|
||||||
- :doc:`hlw8012`
|
- :doc:`hlw8012`
|
||||||
- :doc:`cse7766`
|
- :doc:`cse7766`
|
||||||
|
- :doc:`integration`
|
||||||
- :doc:`/components/sensor/pulse_counter`
|
- :doc:`/components/sensor/pulse_counter`
|
||||||
- :doc:`/components/sensor/pulse_meter`
|
- :doc:`/components/sensor/pulse_meter`
|
||||||
- :doc:`/components/time/homeassistant`
|
- :doc:`/components/time/homeassistant`
|
||||||
|
2
conf.py
2
conf.py
@ -69,7 +69,7 @@ author = "ESPHome"
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = "2024.8"
|
version = "2024.8"
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -429,6 +429,7 @@ Contributors
|
|||||||
- `DeadEnd (@DeadEnded) <https://github.com/DeadEnded>`__
|
- `DeadEnd (@DeadEnded) <https://github.com/DeadEnded>`__
|
||||||
- `Debashish Sahu (@debsahu) <https://github.com/debsahu>`__
|
- `Debashish Sahu (@debsahu) <https://github.com/debsahu>`__
|
||||||
- `declanshanaghy (@declanshanaghy) <https://github.com/declanshanaghy>`__
|
- `declanshanaghy (@declanshanaghy) <https://github.com/declanshanaghy>`__
|
||||||
|
- `Ali Jafri (@deCodeIt) <https://github.com/deCodeIt>`__
|
||||||
- `Maximilian (@DeerMaximum) <https://github.com/DeerMaximum>`__
|
- `Maximilian (@DeerMaximum) <https://github.com/DeerMaximum>`__
|
||||||
- `definitio (@definitio) <https://github.com/definitio>`__
|
- `definitio (@definitio) <https://github.com/definitio>`__
|
||||||
- `deftdawg (@deftdawg) <https://github.com/deftdawg>`__
|
- `deftdawg (@deftdawg) <https://github.com/deftdawg>`__
|
||||||
@ -1932,4 +1933,4 @@ Contributors
|
|||||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||||
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
|
- `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