mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-01-27 22:31:37 +01:00
Merge branch 'current' into beta
This commit is contained in:
commit
3c97a0e622
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
|||||||
-
|
-
|
||||||
name: Build and push
|
name: Build and push
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
|
@ -83,8 +83,8 @@ Default UART GPIO Pins
|
|||||||
* - ESP32
|
* - ESP32
|
||||||
- TX: 1, RX: 3
|
- TX: 1, RX: 3
|
||||||
- N/A
|
- N/A
|
||||||
- TX: 9, RX: 10
|
- TX: 10, RX: 9
|
||||||
- TX: 16, RX: 17
|
- TX: 17, RX: 16
|
||||||
- N/A
|
- N/A
|
||||||
- N/A
|
- N/A
|
||||||
* - ESP32-C3
|
* - 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"
|
name: "BME680 Indoor Air Quality"
|
||||||
id: iaq
|
id: iaq
|
||||||
icon: "mdi:gauge"
|
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: |-
|
lambda: |-
|
||||||
return log(id(gas_resistance).state) + 0.04 * id(humidity).state;
|
return log(id(gas_resistance).state) + 0.04 * id(humidity).state;
|
||||||
|
state_class: "measurement"
|
||||||
text_sensor:
|
text_sensor:
|
||||||
- platform: template
|
- platform: template
|
||||||
name: "BME680 IAQ Classification"
|
name: "BME680 IAQ Classification"
|
||||||
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
@ -554,8 +554,8 @@ For example to set a specific update interval on a common uptime sensor that is
|
|||||||
common: !include common.yaml
|
common: !include common.yaml
|
||||||
|
|
||||||
sensor:
|
sensor:
|
||||||
- id: !extend uptime_sensor
|
- id: !extend uptime_sensor
|
||||||
update_interval: 10s
|
update_interval: 10s
|
||||||
|
|
||||||
Remove
|
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>`__
|
- `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>`__
|
- `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>`__
|
- `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
|
Custom Components & Code
|
||||||
------------------------
|
------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user