-
Notifications
You must be signed in to change notification settings - Fork 13
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
state.chargeCouplerACStatus not working #193
Comments
I‘m interested in a fix or advice too! |
When you delete the datapoint and restart adapter will it come back? |
Yes! |
Nothing the adapter can change its only writes in data object what the api is returning |
maybe this information is in another data object |
That‘s a good idea! I‘ll try and report back! |
It should you can also enable the debug level silly |
Es muss sich aber unter chargeFlapDCStatus etwas ändern zb changed |
Ja, wie ich oben schon geschrieben habe: „Just the item „changed“ reacts and changes to status „true“ when the plug is connected or removed“. Dazu gibt es einen aktualisierten Zeitstempel. Leider geht daraus nicht eindeutig hervor, ob die Klappe geöffnet oder geschlossen wurde, soweit ich das sehen kann. |
Oh, sorry! Gerade entdecke ich, dass sich „intValue“ bei offener Klappe „chargeFlapDCStatus“ von „1“ auf „0“ ändert! Beim Ladestecker „CouplerACStatus“ ist das nicht der Fall (Der wird in der Me-App aber auch nicht direkt angezeigt). Es ist für mich ausreichend, statt des Ladesteckers die offene Klappe zu erkennen. Danke vielmals für Deine Geduld! Du hast mich in die richtige Richtung geschubst! 👍 |
Nachtrag: |
Sorry ich habe vergessen das hier zu updaten, habe für mich selbst eine Lösung gefunden: Dieser ist aufgeschlüsselt in folgende Zustände: // Charging Status Ich habe mir daraus dann ein Alias gemacht, das mir „C“ meldet wenn „irgendwie geladen wird“, „B“ meldet wenn nicht geladen wird und sonst immer „A“ meldet: val === 0 || val === 5 || val === 6 || val === 9 || val === 10 || val === 11 ? 'C' : val === 1 || val === 2 || val === 4 || val === 7 || val === 8 ? 'B' : 'A' Diese Konvertierung habe ich verwendet, um es in EVCC mit dem Generic Vehicle Adapter zu nutzen, falls das jemand braucht. |
I try to use Coupler AC Status for detecting if the vehicle is connected to the wallbox at home or not.
But there are no state changes, even if the vehicle charging is active, there is no change in CouplerACStatus.
Is there any chance to get this fixed or otherwise detect if Charger of the vehicle is connected (just plugged, independent of the actual charging running or not.)
Would be very helpful for energy management and home solar charging of the vehicle to know if the car is connected or not, so that energy can be directed to the car if there is enough energy available.
The text was updated successfully, but these errors were encountered: