mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-05 09:20:08 +01:00
f3c10ed34b
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Pavlo Dudnytskyi <pdudnytskyi@astrata.eu>
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: 17
|
|
rx_pin: 16
|
|
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`
|