Miele@home, miele@mobile component

Mine have done the same a couple of times.
I just delete the miele token, hidden file in the config folder and then restart.
to reconfigure the component again.

2 Likes

Thatā€™s what Iā€™ve done the last few times I saw this error.

1 Like

Thank you Salkin! It worked!

Where is the hidden Miele token hidden :wink: thanks :slight_smile: as have looked and cant see it?

it is a hidden file in your config folder, so where your configuration.yaml lives.

it is called .miele-token-cache

1 Like

thanks! worked for me too

Hey, now miele has implemented control of the ventilation hood through miele@home-api (finally), does this work with the plugin? I am really looking forward to this as this is actually useful, I can control it with my light switches.

Hi! :slight_smile:
at first, many thanks for this Great Integration!
I have a problem with the sensor programType. This habe always the state ā€žeigenes Programmā€œ. What is wrong in my config? The other sensors all Fine.

Thanks and regards
Frank

Hi,
Iā€™m trying to setup a state trigger to notify me once the washingmachine is done. However the state trigger never seems to fire. Iā€™m really new to home assistant so I hope I did this trigger configuration right:

platform: state
entity_id: sensor.waschmaschine_status
to: Finished

Anyone got any idea why this might not work?
Thnx in advance!

In my German version it looks like this:

    - platform: state
      entity_id: sensor.waschmaschine_status
      to: 'Ende' 

Maybe you should change Finished to 'Finished'.

It is possible to create a sensor for the detergent level and display the prgramname?

No, the detergent level isnā€™t available via the API.

Also there are programPhase and programType, but no programName in the API.

Here you can find whatā€™s available by device.

1 Like

Great, thanks for the Information! :slight_smile:

But the programType is always 1. Is that correct too?

ProgramType: Eigenes Programm
rawProgramType: 1

Yes, at least for my washing machine.
My tumble dryer always shows

programType: Reinigungs-/ Pflegeprogramm
rawProgramType: 3

Auch lustig :laughing: - Vielleicht Ƥndert sich das ja in den zukĆ¼nftigen API Updates

Yes, Iā€™m quite sure. The API is still in Beta. But most important for me is ā€œremaing Timeā€ and the info, that the program has finished (which trigger an automation).

Thatā€™s true. Thatā€™s enough for me at first :slight_smile:

Thnx for the response (sorry for my late one but well it takes some time to fill the machine ':)), it didnā€™t seem to help unfortunately.
This is the automation as defined in my automations.yaml

- id: '1601539751186'
  alias: Washmachine Klaar EN
  trigger:
  - platform: state
    entity_id: sensor.waschmaschine_status
    from: 'In use'
    to: 'Finished'
  action:
  - service: tts.google_translate_say
    data:
      message: De wasmachine is klaar
      language: nl
      entity_id: media_player.woonkamer_speaker
  mode: single

However it doesnā€™t trigger when I check the logs.

And if you remove the line with from: 'In use'?