-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Home Connect (BSH - Bosch/Siemens/Neff/Gagenau) Dishwasher #36
Comments
Thanks so much for the splended documentation and writeup @rickdeck! I'll a warning about the active state in the debug pane when it's not properly configured. Hopefully that would've helped. |
How to track progress as a bar e.g 0->100% |
for those using home_connect_alt it's a tiny bit different: type: custom:timer-bar-card
entities:
- entity: sensor.412111111_bsh_common_status_operationstate
name: Dishwasher running
active_state: BSH.Common.EnumType.OperationState.Run
active_icon: mdi:dishwasher
end_time:
entity: sensor.41211111112_bsh_common_option_remainingprogramtime
text_width: 4em
bar_width: calc(70% - 10em) |
@eMerzh Thanks. I was a bit annoyed by it showing BSH.Common.EnumType.OperationState.Ready when the dishwasher wasn't running. To solve that I created a template sensor. sensor:
- platform: template
sensors:
dishwasher_operation_state:
value_template: >
{{ states('sensor.41211111112_bsh_common_status_operationstate').split('.')[-1] }} entities:
- type: custom:timer-bar-card
name: Dishwasher
entity: sensor.dishwasher_operation_state
active_state: Run
icon: mdi:dishwasher
end_time:
entity: sensor.41211111112_bsh_common_option_remainingprogramtime
text_width: 4em
bar_width: calc(40%) |
|
The only difference for mushroom styling is that you need to add the |
|
Would you mind sharing your code for the washing machine example? |
Can someone share how to get this using Mushroom card. When I add the Mushroom: in nothing changes |
You have to note: Example: type: custom:timer-bar-card
entity: sensor.bosch_wav28mwin_68a40e953769_bsh_common_status_operationstate
name: Waschmaschine
icon: mdi:washing-machine
active_state: BSH.Common.EnumType.OperationState.Run
end_time:
entity: >-
sensor.bosch_wav28mwin_68a40e953769_bsh_common_option_remainingprogramtime
text_width: 4em
bar_width: calc(70% - 10em)
invert: true
mushroom: |
Hm, I can't get it to work with Home Assistant 2024.11.1. It appears that the default active icon changed but I'm not sure if this happened with the latest update or not. I changed out the the active icon to mdi:play since it's the default one but the bar won't show up. |
Integration name and link
Home Connect
https://github.com/home-assistant/core/tree/dev/homeassistant/components/home_connect
Used to connect to BSH appliances (Bosch/Siemens/Neff/Gaggenau/...)
In my case, I connected to a Bosch Dishwasher to display the time left until completion.
Your card configuration
Result:
Caveats
Relevant Home Connect entities for your reference:
FYI: There is also another entity from the Home Connect integration called sensor.dishwasher_duration, however in case of my device it was always "Unavailable" (might be used by other appliances from BSH)
Hope that helps. Keep up the good work!
Cheers!
The text was updated successfully, but these errors were encountered: