mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-26 17:27:47 +01:00
commit
6ec58e6657
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
||||
-
|
||||
name: Build and push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
|
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.6.0b4
|
||||
PROJECT_NUMBER = 2024.6.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 = 2024.6.0b4
|
||||
ESPHOME_REF = 2024.6.0b5
|
||||
PAGEFIND_VERSION=1.1.0
|
||||
PAGEFIND=pagefind
|
||||
NET_PAGEFIND=../pagefindbin/pagefind
|
||||
|
@ -1 +1 @@
|
||||
2024.6.0b4
|
||||
2024.6.0b5
|
@ -220,6 +220,10 @@ Beta Changes
|
||||
- fix(dallas): make recovery time for 1-bit equal to that of 0-bit :esphomepr:`6763` by :ghuser:`muggenhor`
|
||||
- [wifi] Fix some access point bugs related to esp-idf 4.4.7 :esphomepr:`6928` by :ghuser:`jesserockz`
|
||||
- Rename legacy/modern to ota/factory :esphomepr:`6922` by :ghuser:`jesserockz`
|
||||
- Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 :esphomepr:`6926` by :ghuser:`dependabot[bot]`
|
||||
- Bump docker/build-push-action from 5.4.0 to 6.0.0 in /.github/actions/build-image :esphomepr:`6927` by :ghuser:`dependabot[bot]`
|
||||
- Bump docker/build-push-action from 6.0.0 to 6.0.1 in /.github/actions/build-image :esphomepr:`6934` by :ghuser:`dependabot[bot]`
|
||||
- [network] Default ipv6 to false to always set the flags :esphomepr:`6937` by :ghuser:`jesserockz`
|
||||
|
||||
All changes
|
||||
^^^^^^^^^^^
|
||||
@ -354,6 +358,10 @@ All changes
|
||||
- fix(dallas): make recovery time for 1-bit equal to that of 0-bit :esphomepr:`6763` by :ghuser:`muggenhor`
|
||||
- [wifi] Fix some access point bugs related to esp-idf 4.4.7 :esphomepr:`6928` by :ghuser:`jesserockz`
|
||||
- Rename legacy/modern to ota/factory :esphomepr:`6922` by :ghuser:`jesserockz`
|
||||
- Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 :esphomepr:`6926` by :ghuser:`dependabot[bot]`
|
||||
- Bump docker/build-push-action from 5.4.0 to 6.0.0 in /.github/actions/build-image :esphomepr:`6927` by :ghuser:`dependabot[bot]`
|
||||
- Bump docker/build-push-action from 6.0.0 to 6.0.1 in /.github/actions/build-image :esphomepr:`6934` by :ghuser:`dependabot[bot]`
|
||||
- [network] Default ipv6 to false to always set the flags :esphomepr:`6937` by :ghuser:`jesserockz`
|
||||
|
||||
Past Changelogs
|
||||
---------------
|
||||
|
@ -83,8 +83,8 @@ Default UART GPIO Pins
|
||||
* - ESP32
|
||||
- TX: 1, RX: 3
|
||||
- N/A
|
||||
- TX: 9, RX: 10
|
||||
- TX: 16, RX: 17
|
||||
- TX: 10, RX: 9
|
||||
- TX: 17, RX: 16
|
||||
- N/A
|
||||
- N/A
|
||||
* - ESP32-C3
|
||||
|
@ -132,9 +132,10 @@ Add indoor air quality (IAQ) calculation and IAQ label, based on the values in t
|
||||
name: "BME680 Indoor Air Quality"
|
||||
id: iaq
|
||||
icon: "mdi:gauge"
|
||||
# caulculation: comp_gas = log(R_gas[ohm]) + 0.04 log(Ohm)/%rh * hum[%rh]
|
||||
# calculation: comp_gas = log(R_gas[ohm]) + 0.04 log(Ohm)/%rh * hum[%rh]
|
||||
lambda: |-
|
||||
return log(id(gas_resistance).state) + 0.04 * id(humidity).state;
|
||||
state_class: "measurement"
|
||||
text_sensor:
|
||||
- platform: template
|
||||
name: "BME680 IAQ Classification"
|
||||
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
@ -32,7 +32,11 @@ Configuration variables:
|
||||
************************
|
||||
|
||||
- **id** (*Optional*, :ref:`config-id`): Manually set the ID of this touchscreen.
|
||||
- **rotation** (*Optional*): Set the rotation of the touchscreen. By default this will be set to match the display associated with the touchscreen, but this allows more control. Choices are ``0``, ``90``, ``180`` and ``270``.
|
||||
- **rotation** (*Optional*): Set the rotation of the touchscreen. By default this will be set to match
|
||||
the display associated with the touchscreen, but this allows more control. Choices are ``0``, ``90``, ``180`` and ``270``.
|
||||
- **interrupt_pin** (*Optional*, :ref:`Pin Schema <config-pin_schema>`): The GPIO pin to use as the interrupt pin.
|
||||
This pin is used to detect when the touchscreen has new data available.
|
||||
If not set, the touchscreen will be polled instead of using interrupts.
|
||||
|
||||
- All other options from :ref:`Touchscreen <config-touchscreen>`.
|
||||
|
||||
|
2
conf.py
2
conf.py
@ -69,7 +69,7 @@ author = "ESPHome"
|
||||
# The short X.Y version.
|
||||
version = "2024.6"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "2024.6.0b4"
|
||||
release = "2024.6.0b5"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
@ -554,8 +554,8 @@ For example to set a specific update interval on a common uptime sensor that is
|
||||
common: !include common.yaml
|
||||
|
||||
sensor:
|
||||
- id: !extend uptime_sensor
|
||||
update_interval: 10s
|
||||
- id: !extend uptime_sensor
|
||||
update_interval: 10s
|
||||
|
||||
Remove
|
||||
------
|
||||
|
@ -58,6 +58,7 @@ Blog Posts & Videos
|
||||
- `Converting a Carro Home DC Fan to ESPHome <https://1projectaweek.com/blog/2022/2/8/converting-a-carro-home-dc-fan-to-esp-home>`__ by `Bill Church <https://1projectaweek.com>`__
|
||||
- `Automated Coffee Bean Roaster <https://hackaday.io/project/186852-automated-coffee-bean-roaster>`__ by `brooksben11 <https://hackaday.io/brooksben11>`__
|
||||
- `Droplet Smart Irrigation System <https://github.com/PricelessToolkit/Droplet>`__ by `PricelessToolkit <https://github.com/PricelessToolkit>`__
|
||||
- `Garage door opener controller for devices with optical encoder <https://github.com/serg987/ESPHomeGarageDoorOpener>`__ by :ghuser:`serg987`
|
||||
|
||||
Custom Components & Code
|
||||
------------------------
|
||||
|
@ -644,6 +644,7 @@ Contributors
|
||||
- `Jonathan Kollasch (@jakllsch) <https://github.com/jakllsch>`__
|
||||
- `jakub-medrzak (@jakub-medrzak) <https://github.com/jakub-medrzak>`__
|
||||
- `James Hirka (@jameshirka) <https://github.com/jameshirka>`__
|
||||
- `James Myatt (@jamesmyatt) <https://github.com/jamesmyatt>`__
|
||||
- `James Lakin (@jamesorlakin) <https://github.com/jamesorlakin>`__
|
||||
- `Jamie Cole (@jamiejcole) <https://github.com/jamiejcole>`__
|
||||
- `Jason (@jamman9000) <https://github.com/jamman9000>`__
|
||||
@ -912,6 +913,7 @@ Contributors
|
||||
- `Murray Scott (@mscottco) <https://github.com/mscottco>`__
|
||||
- `MSe-5-14 (@MSe-5-14) <https://github.com/MSe-5-14>`__
|
||||
- `mtl010957 (@mtl010957) <https://github.com/mtl010957>`__
|
||||
- `Giel van Schijndel (@muggenhor) <https://github.com/muggenhor>`__
|
||||
- `mulcmu (@mulcmu) <https://github.com/mulcmu>`__
|
||||
- `mulder-fbi (@mulder-fbi) <https://github.com/mulder-fbi>`__
|
||||
- `Martin Murray (@murrayma) <https://github.com/murrayma>`__
|
||||
@ -928,7 +930,6 @@ Contributors
|
||||
- `Kevin Uhlir (@n0bel) <https://github.com/n0bel>`__
|
||||
- `n6ham (@n6ham) <https://github.com/n6ham>`__
|
||||
- `N6RDV (@N6RDV) <https://github.com/N6RDV>`__
|
||||
- `Erik Näsström (@Naesstrom) <https://github.com/Naesstrom>`__
|
||||
- `H. Árkosi Róbert (@nagyrobi) <https://github.com/nagyrobi>`__
|
||||
- `Viktor Nagy (@nagyv) <https://github.com/nagyv>`__
|
||||
- `nanoparticle (@nanoparticle) <https://github.com/nanoparticle>`__
|
||||
@ -1007,6 +1008,7 @@ Contributors
|
||||
- `Daniel Mahaney (@Papa-DMan) <https://github.com/Papa-DMan>`__
|
||||
- `Christian Schmitt (@papillon81) <https://github.com/papillon81>`__
|
||||
- `Faidon Liambotis (@paravoid) <https://github.com/paravoid>`__
|
||||
- `Pascal Roeleven (@pascallj) <https://github.com/pascallj>`__
|
||||
- `Patrick Collins (@patrickcollins12) <https://github.com/patrickcollins12>`__
|
||||
- `Paul Deen (@PaulAntonDeen) <https://github.com/PaulAntonDeen>`__
|
||||
- `Paul Monigatti (@paulmonigatti) <https://github.com/paulmonigatti>`__
|
||||
@ -1245,6 +1247,7 @@ Contributors
|
||||
- `Theexternaldisk (@Theexternaldisk) <https://github.com/Theexternaldisk>`__
|
||||
- `Martijn van der Pol (@TheFes) <https://github.com/TheFes>`__
|
||||
- `TheGroundZero (@TheGroundZero) <https://github.com/TheGroundZero>`__
|
||||
- `Alexander Münch (@theHacker) <https://github.com/theHacker>`__
|
||||
- `thejonesyboy (@thejonesyboy) <https://github.com/thejonesyboy>`__
|
||||
- `TheJulianJES (@TheJulianJES) <https://github.com/TheJulianJES>`__
|
||||
- `Bart (@TheNameIsBart) <https://github.com/TheNameIsBart>`__
|
||||
@ -1383,4 +1386,4 @@ Contributors
|
||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
|
||||
|
||||
*This page was last updated June 18, 2024.*
|
||||
*This page was last updated June 19, 2024.*
|
||||
|
Loading…
Reference in New Issue
Block a user