I think what I want to do is impossible in a single scene.
If that’s the case, it’s really a pity.
The Renault API sends the charging status using 8 values :
NOT_IN_CHARGE = 0.0
WAITING_FOR_A_PLANNED_CHARGE = 0.1
CHARGE_ENDED = 0.2
WAITING_FOR_CURRENT_CHARGE = 0.3
ENERGY_FLAP_OPENED = 0.4
CHARGE_IN_PROGRESS = 1.0
CHARGE_ERROR = -1.0
UNAVAILABLE = -1.1
I would like to get on my dashboard the charging status as a message and a history or graph of charge start and end.
I think I should use this:
But I’m afraid I’ll need one scene per value.
A « case » function would be welcome
If I have « 0.0 » Then Send to the dashboard « not charging »
If I have …
Or maybe by using a variable that would contain the value, but I don’t know which trigger to use
