mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-02-28 03:41:57 +01:00
commit
789e5e5a4f
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 = 2025.2.0b4
|
||||
PROJECT_NUMBER = 2025.2.0b5
|
||||
|
||||
# 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 = 2025.2.0b4
|
||||
ESPHOME_REF = 2025.2.0b5
|
||||
PAGEFIND_VERSION=1.1.1
|
||||
PAGEFIND=pagefind
|
||||
NET_PAGEFIND=../pagefindbin/pagefind
|
||||
|
@ -1 +1 @@
|
||||
2025.2.0b4
|
||||
2025.2.0b5
|
@ -153,6 +153,8 @@ Beta Changes
|
||||
- [scd30] Increase minimal CONF_UPDATE_INTERVAL from 1 to 2 seconds :esphomepr:`8256` by :ghuser:`DjordjeMandic` (breaking-change)
|
||||
- Bump zeroconf to 0.144.3 :esphomepr:`8253` by :ghuser:`bdraco`
|
||||
- DHT platform now supports modules with inbuilt external resistor :esphomepr:`8257` by :ghuser:`deCodeIt`
|
||||
- Replace glyphsets with esphome_glyphsets :esphomepr:`8261` by :ghuser:`bdraco`
|
||||
- Bump aioesphomeapi to 29.1.0 :esphomepr:`8105` by :ghuser:`bdraco`
|
||||
|
||||
All changes
|
||||
^^^^^^^^^^^
|
||||
@ -347,6 +349,8 @@ All changes
|
||||
- [scd30] Increase minimal CONF_UPDATE_INTERVAL from 1 to 2 seconds :esphomepr:`8256` by :ghuser:`DjordjeMandic` (breaking-change)
|
||||
- Bump zeroconf to 0.144.3 :esphomepr:`8253` by :ghuser:`bdraco`
|
||||
- DHT platform now supports modules with inbuilt external resistor :esphomepr:`8257` by :ghuser:`deCodeIt`
|
||||
- Replace glyphsets with esphome_glyphsets :esphomepr:`8261` by :ghuser:`bdraco`
|
||||
- Bump aioesphomeapi to 29.1.0 :esphomepr:`8105` by :ghuser:`bdraco`
|
||||
|
||||
Past Changelogs
|
||||
---------------
|
||||
|
@ -288,7 +288,7 @@ For more complex use cases, several methods are available for use on datetimes f
|
||||
|
||||
// Within lambda, set the datetime to 2024-12-31 12:34:56
|
||||
auto call = id(my_datetime).make_call();
|
||||
call.set_date("2024-12-31 12:34:56");
|
||||
call.set_datetime("2024-12-31 12:34:56");
|
||||
call.perform();
|
||||
|
||||
Check the API reference for information on the methods that are available for
|
||||
|
@ -12,7 +12,7 @@ sensor to work.
|
||||
|
||||
This component only does some basic filtering and no calibration. Due to the complexity of this sensor and the amount
|
||||
of possible configuration options, you should probably create an :doc:`external component</components/external_components>`
|
||||
by copying and modifying the existing code if you want a specific new feature. Supporting all possible use cases would
|
||||
by copying and modifying `the existing code <https://github.com/esphome/esphome/tree/dev/esphome/components/mpu6050>`_ if you want a specific new feature. Supporting all possible use cases would
|
||||
be quite hard.
|
||||
|
||||
.. figure:: images/mpu6050-full.jpg
|
||||
|
@ -6,7 +6,7 @@ SCD4X CO₂, Temperature and Relative Humidity Sensor
|
||||
:image: scd4x.jpg
|
||||
|
||||
The ``scd4x`` sensor platform allows you to use your Sensirion SCD4X CO₂
|
||||
(`datasheet <https://sensirion.com/media/documents/E0F04247/631EF271/CD_DS_SCD40_SCD41_Datasheet_D1.pdf>`__) sensors with ESPHome.
|
||||
(`datasheet <https://sensirion.com/media/documents/48C4B7FB/66E05452/CD_DS_SCD4x_Datasheet_D1.pdf>`__) sensors with ESPHome.
|
||||
The :ref:`I²C Bus <i2c>` is required to be set up in your configuration for this sensor to work.
|
||||
|
||||
.. figure:: images/scd4x.jpg
|
||||
|
2
conf.py
2
conf.py
@ -74,7 +74,7 @@ author = "ESPHome"
|
||||
# The short X.Y version.
|
||||
version = "2025.2"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "2025.2.0b4"
|
||||
release = "2025.2.0b5"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -1537,6 +1537,7 @@ Contributors
|
||||
- `Dave (@pow4all) <https://github.com/pow4all>`__
|
||||
- `pplucky (@pplucky) <https://github.com/pplucky>`__
|
||||
- `Peter Provost (@PProvost) <https://github.com/PProvost>`__
|
||||
- `pre-commit-ci[bot] (@pre-commit-ci[bot]) <https://github.com/pre-commit-ci[bot]>`__
|
||||
- `Q. Marchi (@preeefix) <https://github.com/preeefix>`__
|
||||
- `PricelessToolkit (@PricelessToolkit) <https://github.com/PricelessToolkit>`__
|
||||
- `Francesco Ciocchetti (@primeroz) <https://github.com/primeroz>`__
|
||||
@ -2080,4 +2081,4 @@ Contributors
|
||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
|
||||
|
||||
*This page was last updated February 17, 2025.*
|
||||
*This page was last updated February 18, 2025.*
|
||||
|
Loading…
Reference in New Issue
Block a user