mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-16 10:55:21 +01:00
88e315e0e4
* Many example yaml tidy-ups * Update components/sensor/hlw8012.rst --------- Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
69 lines
2.3 KiB
ReStructuredText
69 lines
2.3 KiB
ReStructuredText
Haier Climate Binary Sensors
|
|
============================
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up additional binary sensors for Haier climate devices.
|
|
:image: haier.svg
|
|
|
|
Additional sensors for Haier Climate device. **These sensors are supported only by the hOn protocol**.
|
|
|
|
|
|
.. figure:: images/haier-climate.jpg
|
|
:align: center
|
|
:width: 50.0%
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
uart:
|
|
baud_rate: 9600
|
|
tx_pin: GPIOXX
|
|
rx_pin: GPIOXX
|
|
id: ac_port
|
|
|
|
climate:
|
|
- platform: haier
|
|
id: haier_ac
|
|
protocol: hOn
|
|
name: Haier AC
|
|
uart_id: ac_port
|
|
|
|
binary_sensor:
|
|
- platform: haier
|
|
haier_id: haier_ac
|
|
compressor_status:
|
|
name: Haier Outdoor Compressor Status
|
|
defrost_status:
|
|
name: Haier Defrost Status
|
|
four_way_valve_status:
|
|
name: Haier Four Way Valve Status
|
|
indoor_electric_heating_status:
|
|
name: Haier Indoor Electric Heating Status
|
|
indoor_fan_status:
|
|
name: Haier Indoor Fan Status
|
|
outdoor_fan_status:
|
|
name: Haier Outdoor Fan Status
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **haier_id** (**Required**, :ref:`config-id`): The id of haier climate component
|
|
- **compressor_status** (*Optional*): A binary sensor that indicates Haier climate compressor activity.
|
|
All options from :ref:`Binary Sensor <config-binary_sensor>`.
|
|
- **defrost_status** (*Optional*): A binary sensor that indicates defrost procedure activity.
|
|
All options from :ref:`Binary Sensor <config-binary_sensor>`.
|
|
- **four_way_valve_status** (*Optional*): A binary sensor that indicates four way valve status.
|
|
All options from :ref:`Binary Sensor <config-binary_sensor>`.
|
|
- **indoor_electric_heating_status** (*Optional*): A binary sensor that indicates electrical heating system activity.
|
|
All options from :ref:`Binary Sensor <config-binary_sensor>`.
|
|
- **indoor_fan_status** (*Optional*): A binary sensor that indicates indoor fan activity.
|
|
All options from :ref:`Binary Sensor <config-binary_sensor>`.
|
|
- **outdoor_fan_status** (*Optional*): A binary sensor that indicates outdoor fan activity.
|
|
All options from :ref:`Binary Sensor <config-binary_sensor>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`Haier Climate </components/climate/haier>`
|
|
- :ghedit:`Edit`
|