mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-02-04 23:52:18 +01:00
commit
6819309313
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 = 2023.11.0b5
|
||||
PROJECT_NUMBER = 2023.11.0b6
|
||||
|
||||
# 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 = 2023.11.0b5
|
||||
ESPHOME_REF = 2023.11.0b6
|
||||
|
||||
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify
|
||||
|
||||
|
@ -1 +1 @@
|
||||
2023.11.0b5
|
||||
2023.11.0b6
|
@ -112,6 +112,9 @@ Beta Changes
|
||||
- Migrate to using aioesphomeapi for the log runner to fix multiple issues :esphomepr:`5733` by :ghuser:`bdraco`
|
||||
- Bump zeroconf to 0.123.0 :esphomepr:`5736` by :ghuser:`bdraco`
|
||||
- Handle wake word not set up internally :esphomepr:`5738` by :ghuser:`jesserockz`
|
||||
- dashboard: remove usage of codecs module :esphomepr:`5741` by :ghuser:`bdraco`
|
||||
- dashboard: Run get_serial_ports in the executor :esphomepr:`5740` by :ghuser:`bdraco`
|
||||
- Generate partitions.csv based on flash size :esphomepr:`5697` by :ghuser:`kbx81`
|
||||
|
||||
All changes
|
||||
^^^^^^^^^^^
|
||||
@ -226,6 +229,9 @@ All changes
|
||||
- Migrate to using aioesphomeapi for the log runner to fix multiple issues :esphomepr:`5733` by :ghuser:`bdraco`
|
||||
- Bump zeroconf to 0.123.0 :esphomepr:`5736` by :ghuser:`bdraco`
|
||||
- Handle wake word not set up internally :esphomepr:`5738` by :ghuser:`jesserockz`
|
||||
- dashboard: remove usage of codecs module :esphomepr:`5741` by :ghuser:`bdraco`
|
||||
- dashboard: Run get_serial_ports in the executor :esphomepr:`5740` by :ghuser:`bdraco`
|
||||
- Generate partitions.csv based on flash size :esphomepr:`5697` by :ghuser:`kbx81`
|
||||
|
||||
Past Changelogs
|
||||
---------------
|
||||
|
@ -23,13 +23,16 @@ Configuration variables:
|
||||
choose a generic board from Espressif such as ``esp32dev``.
|
||||
- **framework** (*Optional*): Options for the underlying framework used by ESPHome.
|
||||
See :ref:`esp32-arduino_framework` and :ref:`esp32-espidf_framework`.
|
||||
- **flash_size** (*Optional*, string): The amount of flash memory available on the ESP32 board/module. One of ``4MB``,
|
||||
``8MB``, ``16MB`` or ``32MB``. Defaults to ``4MB``. **Warning: specifying a size larger than that available on your
|
||||
board will cause the ESP32 to fail to boot.**
|
||||
- **variant** (*Optional*, string): The variant of the ESP32 that is used on this board. One of ``esp32``,
|
||||
``esp32s2``, ``esp32s3``, ``esp32c3`` and ``esp32h2``. Defaults to the variant that is detected from the board, if
|
||||
``esp32s2``, ``esp32s3``, ``esp32c3`` and ``esp32h2``. Defaults to the variant that is detected from the board; if
|
||||
a board that's unknown to ESPHome is used, this option is mandatory.
|
||||
|
||||
.. note::
|
||||
|
||||
Support for the ESP32-S2 and ESP32-C3 is still in development and there could be issues.
|
||||
Support for ESP32 variants such as the S2, S3 and C3 is still in development and there could be issues.
|
||||
|
||||
GPIO Pin Numbering
|
||||
------------------
|
||||
|
@ -147,7 +147,7 @@ Increments through speed levels of the fan with the given ID when executed. If t
|
||||
id: fan_1
|
||||
off_speed_cycle: true
|
||||
# Shorthand:
|
||||
- fan.cycle_speed:: fan_1
|
||||
- fan.cycle_speed: fan_1
|
||||
|
||||
Configuration options:
|
||||
|
||||
|
2
conf.py
2
conf.py
@ -69,7 +69,7 @@ author = "ESPHome"
|
||||
# The short X.Y version.
|
||||
version = "2023.11"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "2023.11.0b5"
|
||||
release = "2023.11.0b6"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -1253,4 +1253,4 @@ Contributors
|
||||
- `Zsolt Zsiros (@ZsZs73) <https://github.com/ZsZs73>`__
|
||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||
|
||||
*This page was last updated November 13, 2023.*
|
||||
*This page was last updated November 14, 2023.*
|
||||
|
Loading…
Reference in New Issue
Block a user