You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: components/climate/haier.rst
+4-1
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,10 @@ Configuration variables:
106
106
- **protocol** (*Optional*, string): Defines protocol of communication with AC. Possible values: hon or smartair2. Default value is smartair2.
107
107
- **name** (**Required**, string): The name of the climate device.
108
108
- **wifi_signal** (*Optional*, boolean): If true - send wifi signal level to AC.
109
-
- **answer_timeout** (*Optional*, :ref:`config-time`): Responce timeout. Default value is 150ms.
109
+
- **answer_timeout** (*Optional*, :ref:`config-time`): Responce timeout. Default value is 200ms.
110
+
- **alternative_swing_control** (*Optional*, boolean): (supported by smartAir2 only) If true - use alternative values to control swing mode. Use only if the original control method is not working for your AC.
111
+
- **control_packet_size** (*Optional*, int): (supported only by hOn) Define the size of the control packet. Can help with some newer models of ACs that use bigger packets. Default value: 10.
112
+
- **control_method** (*Optional*, list): (supported only by hOn) Defines control method (should be supported by AC). Supported values: MONITOR_ONLY - no control, just monitor status, SET_GROUP_PARAMETERS - set all AC parameters with one command (default method), SET_SINGLE_PARAMETER - set each parameter individually (this method is supported by some new ceiling ACs like AD71S2SM3FA)
110
113
- **display** (*Optional*, boolean): Can be used to set AC display off.
111
114
- **beeper** (*Optional*, boolean): Can be used to disable beeping on commands from AC. Supported only by hOn protocol.
112
115
- **outdoor_temperature** (*Optional*): Temperature sensor for outdoor temperature. Supported only by hOn protocol.
Copy file name to clipboardexpand all lines: components/servo.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Advanced Options:
56
56
This is useful if you have an absolute servo motor and it goes back to its 0 position at startup.
57
57
Defaults to ``false``.
58
58
- **auto_detach_time** (*Optional*, :ref:`config-time`): The time after reaching the target value when the servo will be detached`, if set to zero, servo will not be detached. Defaults to ``0s``.
59
-
- **transition_length** (*Optional*, :ref:`config-time`): The time needed for a full movement (-1.0 to 1.0). This will effectively limit the speed of the servo, the larger the value, the slowest the servo will move. Defaults to ``0s``
59
+
- **transition_length** (*Optional*, :ref:`config-time`): The time needed for a full movement (-1.0 to 1.0). This will effectively limit the speed of the servo, the larger the value, the slowest the servo will move. Defaults to ``0s``.
60
60
This can slow down the servo to avoid loud noises or just make the movement not jerking.
Copy file name to clipboardexpand all lines: guides/configuration-types.rst
+15-14
Original file line number
Diff line number
Diff line change
@@ -331,20 +331,6 @@ your configuration file. This can be used to create generic 'template' configura
331
331
files (like the ``example.yaml`` above) which can be used for multiple devices,
332
332
using substitutions which are provided on the command line.
333
333
334
-
Extend
335
-
------
336
-
337
-
To make changes or add additional configuration to included configurations ``!extend config_id`` can be used, where ``config_id`` is the ID of the configuration to modify.
338
-
For example to set a specific update interval on a common uptime sensor that is shared between configurations:
339
-
340
-
.. code-block:: yaml
341
-
342
-
<<: !include common.yaml
343
-
344
-
sensor:
345
-
- id: !extend uptime_sensor
346
-
update_interval: 10s
347
-
348
334
.. _config-packages:
349
335
350
336
Packages
@@ -543,6 +529,21 @@ platform, it could be constructed like this:
To make changes or add additional configuration to included configurations ``!extend config_id`` can be used, where ``config_id`` is the ID of the configuration to modify.
536
+
For example to set a specific update interval on a common uptime sensor that is shared between configurations:
0 commit comments