mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-03-01 03:51:36 +01:00
commit
364f2c45db
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 = 1.20.0b4
|
||||
PROJECT_NUMBER = 1.20.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 = v1.20.0b4
|
||||
ESPHOME_REF = v1.20.0b5
|
||||
|
||||
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
|
||||
|
||||
|
@ -1 +1 @@
|
||||
1.20.0b4
|
||||
1.20.0b5
|
BIN
changelog/images/online-indicator.png
Normal file
BIN
changelog/images/online-indicator.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
@ -41,8 +41,20 @@ Unfortunately, some breaking changes had to be made:
|
||||
would result in the white channel being at 50% brightness. Starting with this version, this will result in the
|
||||
white channel being set to 30%, as expected.
|
||||
|
||||
|
||||
ESPHome Dashboard
|
||||
-----------------
|
||||
|
||||
Thanks :ghuser:`balloob` for making a small, but very significant change to the dashboard cards so now people who suffer from color-blindness
|
||||
will know whether or not the node is online.
|
||||
|
||||
.. figure:: images/online-indicator.png
|
||||
:align: center
|
||||
:width: 50.0%
|
||||
|
||||
|
||||
Full list of changes
|
||||
--------------------s
|
||||
--------------------
|
||||
|
||||
New Features
|
||||
^^^^^^^^^^^^
|
||||
@ -82,6 +94,11 @@ Beta fixes
|
||||
- Dashboard disable assets caching :esphomepr:`2025` by :ghuser:`OttoWinter`
|
||||
- Improve external components error messages :esphomepr:`2026` by :ghuser:`OttoWinter`
|
||||
- Number and Template Number updates :esphomepr:`2036` by :ghuser:`jesserockz`
|
||||
- Add restore_value to template number :esphomepr:`2041` by :ghuser:`jesserockz`
|
||||
- midea_ac: Fix turbo boost mode. Preset PRESET_BOOST. :esphomepr:`2029` by :ghuser:`dudanov`
|
||||
- Bump dashboard to 20210719.0 :esphomepr:`2043` by :ghuser:`balloob`
|
||||
- Correct ADS1115 handling of multiple sensors in continuous mode :esphomepr:`2016` by :ghuser:`flacjacket`
|
||||
- ESP32 ADC use esp-idf :esphomepr:`2024` by :ghuser:`OttoWinter`
|
||||
|
||||
All changes
|
||||
^^^^^^^^^^^
|
||||
@ -149,6 +166,11 @@ All changes
|
||||
- Dashboard disable assets caching :esphomepr:`2025` by :ghuser:`OttoWinter`
|
||||
- Improve external components error messages :esphomepr:`2026` by :ghuser:`OttoWinter`
|
||||
- Number and Template Number updates :esphomepr:`2036` by :ghuser:`jesserockz`
|
||||
- Add restore_value to template number :esphomepr:`2041` by :ghuser:`jesserockz`
|
||||
- midea_ac: Fix turbo boost mode. Preset PRESET_BOOST. :esphomepr:`2029` by :ghuser:`dudanov`
|
||||
- Bump dashboard to 20210719.0 :esphomepr:`2043` by :ghuser:`balloob`
|
||||
- Correct ADS1115 handling of multiple sensors in continuous mode :esphomepr:`2016` by :ghuser:`flacjacket`
|
||||
- ESP32 ADC use esp-idf :esphomepr:`2024` by :ghuser:`OttoWinter`
|
||||
|
||||
Past Changelogs
|
||||
---------------
|
||||
|
@ -34,9 +34,12 @@ Configuration variables:
|
||||
number. Defaults to ``60s``.
|
||||
- **optimistic** (*Optional*, boolean): Whether to operate in optimistic mode - when in this mode,
|
||||
any command sent to the template number will immediately update the reported state.
|
||||
Defaults to ``false``. Cannot be used with ``lambda``.
|
||||
- **initial_value** (*Optional*, float): The value to use if no ``lambda`` is used or no value
|
||||
stored in RTC/flash at setup time.
|
||||
Cannot be used with ``lambda``. Defaults to ``false``.
|
||||
- **restore_value** (*Optional*, boolean): Saves and loads the state to RTC/Flash.
|
||||
Cannot be used with ``lambda``. Defaults to ``false``.
|
||||
- **initial_value** (*Optional*, float): The value to set the state to on setup if not
|
||||
restored with ``restore_value``.
|
||||
Cannot be used with ``lambda``. Defaults to ``min_value``.
|
||||
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
|
||||
- All other options from :ref:`Sensor <config-number>`.
|
||||
|
||||
|
2
conf.py
2
conf.py
@ -69,7 +69,7 @@ author = "Otto Winter"
|
||||
# The short X.Y version.
|
||||
version = "1.20"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "1.20.0b4"
|
||||
release = "1.20.0b5"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
Loading…
Reference in New Issue
Block a user