Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Integrations/ESPHome/Core.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -432,20 +434,23 @@ sensor:
name: Radar Move Energy
id: radar_moving_energy
filters:
- throttle_with_priority: 1000ms
- lambda: |-
if (id(reduce_db_reporting).state) return {};
return x;
still_energy:
name: Radar Still Energy
id: radar_still_energy
filters:
- throttle_with_priority: 1000ms
- lambda: |-
if (id(reduce_db_reporting).state) return {};
return x;
detection_distance:
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;
Expand Down
Loading