Results 39 comments of stefferber
trafficstars

Thx for your super quick answer. This is a starting point. - How often can I call `get_status()` - Do you know what EV_CHARGING_RATE_KM_PER_HOUR really means? I also share your...

OK - makes sense. Hence, `EV_CHARGING_RATE_KM_PER_HOUR` also depends on our driving style ;-) Right now I am charging with 7.2kW and tracking changes via `get_status()`: This one looks interesting `...

at least ` { "key": "EV_MINUTES_TO_FULLY_CHARGED", "value": "58" }, ` is consistent

After a view minutes ` { "key": "EV_CHARGING_RATE_SOC_PER_HOUR", "value": "6.8" },` is getting more consistent. I have calculated `8.5` instead of `6.8`

Looks more complicated than I thought... I will do a more detailed analysis which data points change how over the charging process. What I have understood already that polling the...

Based on the example script `Charge Off-Peak` I am logging now every 5 minutes. As I am a Python beginner your review and honest feedback is welcome ;-) ``` #...

Did some more smaller changes to the script above and now I am confident that I can log one json file for each time stamp. Next step is to make...

here is which attributes I will store in a time series database ``` 'BATTERY_VOLTAGE': '13.8', 'DISTANCE_TO_EMPTY_FUEL': '0', 'EV_BATTERY_PRECONDITIONING_STATUS': 'OFF', 'EV_CHARGE_NOW_SETTING': 'DEFAULT', 'EV_CHARGE_TYPE': 'UNKNOWN', 'EV_CHARGING_METHOD': 'WIRED', 'EV_CHARGING_MODE_CHOICE': 'TIMEDCHARGINGNOTACTIVE', 'EV_CHARGING_RATE_KM_PER_HOUR': '315', 'EV_CHARGING_RATE_MILES_PER_HOUR':...

With my collected charging data I came to the conclusion that remote preheating/precooling while the Jaguar is AC charging `'EV_CHARGING_METHOD': 'WIRED'` **consumes the energy from the battery and not from...

results of `DIFF` `` 2. Status: Fully charged, Wired, cooling running for 1 Min ``` < 'BATTERY_VOLTAGE': '13.7', > 'BATTERY_VOLTAGE': '15.7', --- < 'BRAZIL_EVENT_MODE': 'FALSE', > 'BRAZIL_EVENT_MODE': 'UNKNOWN', --- <...