Issue with Miele dishwasher

Hi,

since a while…I am not sure if it realted to one of the latest HA updates, I have an issue with my Miele dishwasher.

When I use the switch on or toggle service to power it on in case it is off, I get an error message:

Der Zustand für switch.geschirrspuler_stromversorgung konnte nicht festgelegt werden.

But the device turns on anyways. The problem is when using the command in a script, the script terminates because of the error :frowning:

Maybe you should translate the error for the non-german speakers.

You are right :slight_smile:
It says state could not be set for switch.ggeschirrspueler_stromversorgung.

Any script or yaml code (formatted) to help us understand your issue?

I don’t really get what is hard to understand here.

When I use the service to switch the dishwasher on or off, I get the reply that the state couldn’t be set. No matter where I use it, in the developer tools, a script, whatever. But yeah, I can give an example:

sequence:
  - if:
      - condition: device
        type: is_off
        device_id: 1c62491ad881a63aecc7704cadfae11e
        entity_id: 67f0aca069c7f3c74bff3ecb8c8d3636
        domain: switch
    then:
      - type: turn_on
        device_id: 1c62491ad881a63aecc7704cadfae11e
        entity_id: 67f0aca069c7f3c74bff3ecb8c8d3636
        domain: switch

And as I said above, the switch actually WORKS (device is switched on) but it still sends the error that the state couldn’t be set. And that kills the script.