diff --git a/changelog/2022.9.0.rst b/changelog/2022.9.0.rst index c148f816a..79edc788f 100644 --- a/changelog/2022.9.0.rst +++ b/changelog/2022.9.0.rst @@ -57,6 +57,13 @@ Release 2022.9.3 - October 6 - Bluetooth Proxy active connections :esphomepr:`3817` by :ghuser:`jesserockz` +Release 2022.9.4 - October 7 +---------------------------- + +- Add network type to mdns service message :esphomepr:`3880` by :ghuser:`jesserockz` +- Bump esphome-dashboard to 20221007.0 :esphomepr:`3881` by :ghuser:`jesserockz` +- Dont add wifi block to yaml if discovered device uses ethernet :esphomepr:`3882` by :ghuser:`jesserockz` + Full list of changes -------------------- diff --git a/components/output/index.rst b/components/output/index.rst index 12ab21389..2dc33f38d 100644 --- a/components/output/index.rst +++ b/components/output/index.rst @@ -61,7 +61,7 @@ This action turns the output with the given ID on when executed. on_...: then: - - output.turn_on: relay_1 + - output.turn_on: light_1 .. note:: @@ -69,7 +69,7 @@ This action turns the output with the given ID on when executed. .. code-block:: cpp - id(relay_1).turn_on(); + id(light_1).turn_on(); .. _output-turn_off_action: @@ -82,7 +82,7 @@ This action turns the output with the given ID off when executed. on_...: then: - - output.turn_off: relay_1 + - output.turn_off: light_1 .. note:: @@ -90,7 +90,7 @@ This action turns the output with the given ID off when executed. .. code-block:: cpp - id(relay_1).turn_off(); + id(light_1).turn_off(); .. _output-set_level_action: @@ -98,14 +98,14 @@ This action turns the output with the given ID off when executed. *************************** This action sets the float output to the given level when executed. Note: This only -works with floating point outputs like ESP8266 PWM or LEDC. +works with floating point outputs like ESP8266 PWM, LEDC or ``slow_pwm``. .. code-block:: yaml on_...: then: - output.set_level: - id: output_1 + id: light_1 level: 50% .. note:: @@ -115,7 +115,7 @@ works with floating point outputs like ESP8266 PWM or LEDC. .. code-block:: cpp // range is 0.0 (off) to 1.0 (on) - id(relay_1).set_level(0.5); + id(light_1).set_level(0.5); Full Output Index ----------------- @@ -129,10 +129,13 @@ Full Output Index - :doc:`/components/fan/speed` - :apiref:`binary_output.h `, :apiref:`float_output.h ` -- :ghedit:`Edit` .. toctree:: :maxdepth: 1 :glob: * + +- :ghedit:`Edit` + + diff --git a/components/sensor/sgp4x.rst b/components/sensor/sgp4x.rst index 8d49d2ff3..313a5cc3b 100644 --- a/components/sensor/sgp4x.rst +++ b/components/sensor/sgp4x.rst @@ -6,7 +6,7 @@ SGP40 Volatile Organic Compound Sensor and SGP41 VOC and NOx Sensor :image: sgp40.jpg The ``sgp4x`` sensor platform allows you to use your Sensirion SGP40 -(`datasheet `__) or SGP41 +(`datasheet `__) or SGP41 (`datasheet `__) with ESPHome. The type of sensor used is automatically detected. The :ref:`I²C Bus ` is required to be set up in your configuration for this sensor to work. @@ -41,7 +41,7 @@ Configuration variables: - **name** (**Required**, string): The name of the sensor. - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. - - **algorithm_tuning** (*Optional*): The VOC algorithm can be customized by tuning 6 different parameters. For more details see `Engineering Guidelines for SEN5x `__ + - **algorithm_tuning** (*Optional*): The VOC algorithm can be customized by tuning 6 different parameters. For more details see `Engineering Guidelines for SEN5x `__ - **index_offset** (*Optional*): VOC index representing typical (average) conditions. Allowed values are in range 1..250. The default value is 100. - **learning_time_offset_hours** (*Optional*): Time constant to estimate the VOC algorithm offset from the history in hours. Past events will be forgotten after about twice the learning time. Allowed values are in range 1..1000. The default value is 12 hour @@ -57,7 +57,7 @@ Configuration variables: - **name** (**Required**, string): The name of the sensor. - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. - - **algorithm_tuning** (*Optional*): The NOx algorithm can be customized by tuning 5 different parameters.For more details see `Engineering Guidelines for SEN5x `__ + - **algorithm_tuning** (*Optional*): The NOx algorithm can be customized by tuning 5 different parameters.For more details see `Engineering Guidelines for SEN5x `__ - **index_offset** (*Optional*): NOx index representing typical (average) conditions. Allowed values are in range 1..250. The default value is 100. - **learning_time_offset_hours** (*Optional*): Time constant to estimate the NOx algorithm offset from the history in hours. Past events will be forgotten after about twice the learning time. Allowed values are in range 1..1000. The default value is 12 hour diff --git a/guides/supporters.rst b/guides/supporters.rst index f88577d73..82b15e606 100644 --- a/guides/supporters.rst +++ b/guides/supporters.rst @@ -898,4 +898,4 @@ Contributors - `Zack Barett (@zsarnett) `__ - `Christian Zufferey (@zuzu59) `__ -*This page was last updated October 6, 2022.* +*This page was last updated October 7, 2022.*