Do you have a 2015 or 2016 e-Golf?bhorwich said:<<<I guess this isn't a big deal since we can program the E-Golf to control when at night charging starts>>
I have experienced the same "going to sleep" problem with my e-Golf, when trying to have the charger start with a two-hour delay. This is of importance because, in Northern CA, my PG&E plan charges 1/3 of the daytime rates starting at 11 pm (after my normal bedtime). I have a smartphone but haven't found any way to have charging start on a delayed basis. If anyone knows how to do this on a smartphone (in my case, Apple 6plus S), I'd appreciate learning how. All inquiries to date to VW have drawn blanks.
void J1772EVSEController::Enable()
{
if ((m_EvseState == EVSE_STATE_DISABLED)||
(m_EvseState == EVSE_STATE_SLEEPING)) {
#ifdef SLEEP_STATUS_REG
if (m_EvseState == EVSE_STATE_SLEEPING) {
pinSleepStatus.write(0);
}
#endif // SLEEP_STATUS_REG
m_PrevEvseState = EVSE_STATE_DISABLED;
m_EvseState = EVSE_STATE_UNKNOWN;
// 2015 eGolf modification. Toggling the pilot pin from -12V to +12V twice will
// wake up the car (the amber light next to the charge port will turn on) and allow
// charging to begin.
wdt_disable();
m_Pilot.SetState(PILOT_STATE_N12);
delay(1000);
m_Pilot.SetState(PILOT_STATE_P12);
delay(1000);
m_Pilot.SetState(PILOT_STATE_N12);
delay(1000);
m_Pilot.SetState(PILOT_STATE_P12);
WDT_ENABLE();
}
}
min battery 10%nwahs1 said:For those that have setup car-net "properly" to get this working, what exactly are you setting up? Leave by time? What about the battery% setting?
Horrible UI on car-net, to be sure.
min is immediate charge. If below min, ignore all timers and start now.nwahs1 said:Doesn't min battery mean that if you plug in with more current capacity % than the min (i.e. you're 1/2 charged, but min is 1/4), it won't charge?
forbin404 said:min is immediate charge. If below min, ignore all timers and start now.nwahs1 said:Doesn't min battery mean that if you plug in with more current capacity % than the min (i.e. you're 1/2 charged, but min is 1/4), it won't charge?
BTW you aren't using a Clipper Creek right?nwahs1 said:forbin404 said:min is immediate charge. If below min, ignore all timers and start now.nwahs1 said:Doesn't min battery mean that if you plug in with more current capacity % than the min (i.e. you're 1/2 charged, but min is 1/4), it won't charge?
Well, two nights later, and two failures to "wake up" and charge.
I am really hoping that somebody develops some sort of service that will send commands to your car at midnight to turn on and start charging. Something that replicates what Carnet is doing. My 3 years is up pretty soon here and I'm not sure what will happen after that. But it certainly isn't working well now.
Looks like I will be manually plugging in at 10 or 11 p.m. every night going forward.
Enter your email address to join: