dedup logs and published states
This commit is contained in:
parent
06f5726673
commit
11519a1373
|
|
@ -98,6 +98,8 @@ globals:
|
||||||
improv_serial:
|
improv_serial:
|
||||||
|
|
||||||
logger:
|
logger:
|
||||||
|
logs:
|
||||||
|
bh1750.sensor: INFO
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
update_interval: 30s
|
update_interval: 30s
|
||||||
|
|
@ -148,10 +150,46 @@ text_sensor:
|
||||||
icon: "mdi:format-text"
|
icon: "mdi:format-text"
|
||||||
entity_category: "diagnostic"
|
entity_category: "diagnostic"
|
||||||
internal: False #If Don't Want to See UART Receive Data, Set To True
|
internal: False #If Don't Want to See UART Receive Data, Set To True
|
||||||
|
filters:
|
||||||
|
- lambda: |-
|
||||||
|
static std::string last;
|
||||||
|
if (x == last)
|
||||||
|
return {};
|
||||||
|
last = x;
|
||||||
|
return x;
|
||||||
on_value:
|
on_value:
|
||||||
lambda: |-
|
lambda: |-
|
||||||
if (id(LD1125F_UART_Text).state.substr(0,3) == "occ") {
|
std::string uart_text = id(LD1125F_UART_Text).state;
|
||||||
id(LD1125F_Distance).publish_state(atof(id(LD1125F_UART_Text).state.substr(9).c_str()));
|
if (uart_text == "null") {
|
||||||
|
if (id(LD1125F_Distance).state != 0) {
|
||||||
|
id(LD1125F_Distance).publish_state(0);
|
||||||
|
}
|
||||||
|
if ((id(LD1125F_Clearence_Status) = false) || (id(LD1125F_Occupancy).state != "Clearance")) {
|
||||||
|
id(LD1125F_Occupancy).publish_state("'Clearance");
|
||||||
|
id(LD1125F_Clearence_Status) = true;
|
||||||
|
}
|
||||||
|
if (id(LD1125F_MovOcc_Binary).state == true) {
|
||||||
|
id(LD1125F_MovOcc_Binary).publish_state(false);
|
||||||
|
}
|
||||||
|
if (id(LD1125F_Mov_Binary).state == true) {
|
||||||
|
id(LD1125F_Mov_Binary).publish_state(false);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
float distance = -1;
|
||||||
|
std::string uart_state = "";
|
||||||
|
if (uart_text.length() > 3) {
|
||||||
|
uart_state = id(LD1125F_UART_Text).state.substr(0,3);
|
||||||
|
if (uart_text.length() >= 9) {
|
||||||
|
if (uart_state == "occ" || uart_state =="mov") {
|
||||||
|
distance = std::stof(uart_text.substr(9));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (uart_state == "occ" && distance > 0) {
|
||||||
|
id(LD1125F_Distance).publish_state(distance);
|
||||||
if ((time(NULL)-id(LD1125F_Last_Mov_Time))>id(LD1125F_Mov_Time).state) {
|
if ((time(NULL)-id(LD1125F_Last_Mov_Time))>id(LD1125F_Mov_Time).state) {
|
||||||
id(LD1125F_Occupancy).publish_state("Occupancy");
|
id(LD1125F_Occupancy).publish_state("Occupancy");
|
||||||
if (id(LD1125F_MovOcc_Binary).state == false) {
|
if (id(LD1125F_MovOcc_Binary).state == false) {
|
||||||
|
|
@ -169,8 +207,8 @@ text_sensor:
|
||||||
id(LD1125F_Clearence_Status) = false;
|
id(LD1125F_Clearence_Status) = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (id(LD1125F_UART_Text).state.substr(0,3) == "mov") {
|
else if (uart_state == "mov" && distance > 0) {
|
||||||
id(LD1125F_Distance).publish_state(atof(id(LD1125F_UART_Text).state.substr(9).c_str()));
|
id(LD1125F_Distance).publish_state(distance);
|
||||||
id(LD1125F_Occupancy).publish_state("Movement");
|
id(LD1125F_Occupancy).publish_state("Movement");
|
||||||
if (id(LD1125F_MovOcc_Binary).state == false) {
|
if (id(LD1125F_MovOcc_Binary).state == false) {
|
||||||
id(LD1125F_MovOcc_Binary).publish_state(true);
|
id(LD1125F_MovOcc_Binary).publish_state(true);
|
||||||
|
|
@ -247,15 +285,17 @@ sensor:
|
||||||
unit_of_measurement: "m"
|
unit_of_measurement: "m"
|
||||||
accuracy_decimals: 2
|
accuracy_decimals: 2
|
||||||
filters: # Use Fliter To Debounce
|
filters: # Use Fliter To Debounce
|
||||||
- sliding_window_moving_average:
|
#- sliding_window_moving_average:
|
||||||
window_size: 8
|
# window_size: 8
|
||||||
send_every: 2
|
# send_every: 2
|
||||||
- heartbeat: 0.2s
|
- delta: 0%
|
||||||
- platform: bh1750
|
- platform: bh1750
|
||||||
name: "Illuminance"
|
name: "Illuminance"
|
||||||
accuracy_decimals: 1
|
accuracy_decimals: 1
|
||||||
id: bh1750_light
|
id: bh1750_light
|
||||||
update_interval: 1s
|
update_interval: 1s
|
||||||
|
filters:
|
||||||
|
- delta: 0.1
|
||||||
|
|
||||||
light:
|
light:
|
||||||
- platform: status_led
|
- platform: status_led
|
||||||
|
|
@ -415,4 +455,3 @@ number:
|
||||||
min_value: 0.5
|
min_value: 0.5
|
||||||
max_value: 10
|
max_value: 10
|
||||||
step: 0.5
|
step: 0.5
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user