-
Notifications
You must be signed in to change notification settings - Fork 28
Description
I have a RAV4 Plugin Hybrid. I'm only seeing the following entities:
I would expect to also see EV status information.
I was able to set up a python script to authenticate to the API and get my vehicle information and ev status. I see "evVehicle": true,
and would expect the electic status to be parsed in patch_seventeen_cy_plus.py to be shown in HA.
I've reauthenitcated, reload the integration, restarted HA without success. Is this a bug, or a configuration I need to set to get the EV status? I will note, I don't have a remote connect subscription, but I don't think that should affect the EV data, seeing as I was able to query it myself.
Here is the chargeInfo
data I receive from my local script:
"chargeInfo": {
"plugStatus": 45,
"plugInHistory": 33,
"remainingChargeTime": 65535,
"evTravelableDistance": 80.1,
"evTravelableDistanceSubtractionRate": 16,
"evDistanceAC": 41.0,
"evDistance": 49.0,
"evDistanceUnit": "mi",
"chargeRemainingAmount": 100,
"chargeType": 15,
"chargeWeek": 0,
"chargeStartTime": "42:35",
"chargeEndTime": "42:35",
"connectorStatus": 5,
"batteryPowerSupplyPossibleTime": 16383,
"gasolinePowerSupplyPossibleTime": 1023,
"fuelGage": 35,
"fuelGageStatus": 1,
"gasolineTravelableDistance": 127,
"gasolineTravelableDistanceUnit": 2
}
The data aligns with what the integration should be parsing. If I knew how to debug HA integration I would dig in a little deeper! Thanks for your help.