Yeah, I've thought about doing this. There's no ROC value provided by Entune (or the car), but we can estimate the rate based on how your SOC changes over time while charging. Of course you couldn't get an instant display of this information, as RavCharge would have to do two status updates some time apart during charging, and the longer that time is the more accurate the info will be.
So there'd probably have to be some button you push when charging to start the periodic sampling process, then you'd have to come back ~10 minutes later to see what rate you're getting. I'll see what I can do.
In the meantime if you take note of what your SOC% is in RavCharge before you start charging (and note when you start charging), then do an "Update now" sometime after charging, you can fairly easily estimate the charging rate yourself, as such:
Code:
(SOC_after-SOC_before)/(time_after-time_before)*normal_charge_capacity
Make sure the SOCs are decimals (i.e. .55 for 55%) and the elapsed time is in hours if you want your answer to be in kw. Note that this will be the rate
into the pack - if you want to estimate the power at the wall divide by charging efficiency. I've found 0.8 works reasonably well for that.