diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 39999b057..bc8fece30 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -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 diff --git a/components/logger.rst b/components/logger.rst index 8fe5574d1..f4ab7d7e8 100644 --- a/components/logger.rst +++ b/components/logger.rst @@ -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 diff --git a/components/sensor/bme680.rst b/components/sensor/bme680.rst index d4272e7de..b8e581514 100644 --- a/components/sensor/bme680.rst +++ b/components/sensor/bme680.rst @@ -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" diff --git a/guides/configuration-types.rst b/guides/configuration-types.rst index 51074d9a1..c50fef15d 100644 --- a/guides/configuration-types.rst +++ b/guides/configuration-types.rst @@ -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 ------ diff --git a/guides/diy.rst b/guides/diy.rst index 4254fa477..07c1311d4 100644 --- a/guides/diy.rst +++ b/guides/diy.rst @@ -58,6 +58,7 @@ Blog Posts & Videos - `Converting a Carro Home DC Fan to ESPHome `__ by `Bill Church `__ - `Automated Coffee Bean Roaster `__ by `brooksben11 `__ - `Droplet Smart Irrigation System `__ by `PricelessToolkit `__ +- `Garage door opener controller for devices with optical encoder `__ by :ghuser:`serg987` Custom Components & Code ------------------------