@@ -47,16 +47,13 @@ properly support the default 256000 baud rate of the LD2450 module.
47
47
# ld2450 configuration
48
48
ld2450 :
49
49
id : ld2450_radar
50
- throttle : 1000ms
51
50
52
51
Configuration variables:
53
52
************************
54
53
55
54
- **id ** (*Optional *, :ref: `config-id `): Manually specify the ID for this :doc: `ld2450 ` component.
56
55
- **uart_id ** (*Optional *, :ref: `config-id `): Manually specify the ID of the :ref: `UART Component <uart >` to use.
57
56
Required if you have multiple UARTs configured.
58
- - **throttle ** (*Optional *, int): Time in milliseconds to control the rate of data updates. Defaults to ``1000ms ``.
59
-
60
57
61
58
.. _ld2450-binary-sensors :
62
59
@@ -88,6 +85,20 @@ Configuration variables:
88
85
- **has_still_target ** (*Optional *): True if a still target is detected.
89
86
All options from :ref: `Binary Sensor <config-binary_sensor >`.
90
87
88
+ .. note ::
89
+
90
+ By default, each of the :doc: `Binary Sensor </components/binary_sensor/index >` components above includes the
91
+ following :ref: `filter<binary_sensor-filters> ` by default to prevent flooding Home Assistant with state updates:
92
+
93
+ .. code-block :: yaml
94
+
95
+ - settle : 1000ms
96
+
97
+ If you have defined other filters, this default will be overridden; you may of course add it back to your custom
98
+ filter(s) as above if you wish.
99
+
100
+ To remove the default filter for a any given binary sensor instance, add ``filters: [] `` to its configuration.
101
+
91
102
.. _ld2450-sensors :
92
103
93
104
Sensor
@@ -206,6 +217,23 @@ Configuration variables:
206
217
- **moving_target_count ** (*Optional *, int): Count of moving targets in the zone. All options from
207
218
:ref: `Sensor <config-sensor >`.
208
219
220
+ .. note ::
221
+
222
+ By default, each of the :doc: `Sensor </components/sensor/index >` components above includes the following
223
+ :ref: `filters<sensor-filters> ` by default to prevent flooding Home Assistant with state updates:
224
+
225
+ .. code-block :: yaml
226
+
227
+ - timeout :
228
+ timeout : 1s
229
+ value : last
230
+ - throttle_with_priority : 1000ms
231
+
232
+ If you have defined other filters, this default will be overridden; you may of course add it back to your custom
233
+ filter(s) as above if you wish.
234
+
235
+ To remove the default filters for a any given sensor instance, add ``filters: [] `` to its configuration.
236
+
209
237
.. _ld2450-switch :
210
238
211
239
Switch
0 commit comments