diff --git a/Integrations/ESPHome/Core.yaml b/Integrations/ESPHome/Core.yaml index d2b13af..73d6161 100644 --- a/Integrations/ESPHome/Core.yaml +++ b/Integrations/ESPHome/Core.yaml @@ -1,6 +1,6 @@ substitutions: name: apollo-msr-2 - version: "25.8.6.1" + version: "25.8.12.1" device_description: ${name} made by Apollo Automation - version ${version}. esp32: @@ -376,6 +376,7 @@ sensor: name: Radar Moving Distance id: moving_distance filters: + - throttle_with_priority: 1000ms - lambda: |- static float last_reported_value = -6.0; float current_value = x; @@ -404,6 +405,7 @@ sensor: name: Radar Still Distance id: still_distance filters: + - throttle_with_priority: 1000ms - lambda: |- static float last_reported_value = -6.0; float current_value = x; @@ -432,6 +434,7 @@ sensor: name: Radar Move Energy id: radar_moving_energy filters: + - throttle_with_priority: 1000ms - lambda: |- if (id(reduce_db_reporting).state) return {}; return x; @@ -439,6 +442,7 @@ sensor: name: Radar Still Energy id: radar_still_energy filters: + - throttle_with_priority: 1000ms - lambda: |- if (id(reduce_db_reporting).state) return {}; return x; @@ -446,6 +450,7 @@ sensor: name: Radar Detection Distance id: radar_detection_distance filters: + - throttle_with_priority: 1000ms - lambda: |- static float last_reported_value = -6.0; float current_value = x;