Skip to content

Commit

Permalink
2023.10.6 - fix iabout binary sensor status
Browse files Browse the repository at this point in the history
  • Loading branch information
jumping2000 committed Oct 22, 2023
1 parent f286538 commit 3fcc1d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
- name: dishwasher_status
device_class: power
state: >
{{ True if states('sensor.dishwasher_status') in ['Lavaggio','Risciacquo','Asciugatura'] else False}}
{{ states('sensor.dishwasher_status') in ['Lavaggio','Risciacquo','Asciugatura'] }}
availability: >
{{ states('sensor.dishwasher_status') not in ['unavailable', 'unknown', 'None'] }}

Expand Down
2 changes: 1 addition & 1 deletion elettrodomestici_2023/packages/elettrodomestici/dryer.ya__
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
- name: dryer_status
device_class: power
state: >
{{ states('sensor.dryer_status') in ['Riempimento','Lavaggio','Risciacquo','Centrifuga'] }}
{{ states('sensor.dryer_status') in ['Asciugatura','Mantenimento','Svuotare'] }}
availability: >
{{ states('sensor.dryer_status') not in ['unavailable', 'unknown', 'none'] }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@
- name: washing_machine_status
device_class: power
state: >
{{ states('sensor.washing_machine_status') in ['Riempimento','Lavaggio','Risciacquo','Centrifuga'] }}
{{ states('sensor.washing_machine_status') in ['Lavaggio','Risciacquo','Svuotare'] }}
availability: >
{{ states('sensor.washing_machine_status') not in ['unavailable', 'unknown', 'none'] }}

Expand Down

0 comments on commit 3fcc1d2

Please sign in to comment.