AC charging with Foccci and Zombie, not starting

User avatar
manny
Posts: 95
Joined: Sun Jan 23, 2022 4:15 pm
Location: Netherlands
Has thanked: 22 times
Been thanked: 68 times

Re: AC charging with Foccci and Zombie, not starting

Post by manny »

Yes can confirm this. on 50% no pwm on 30% there is pwm.

Is it normal that when selecting ActuatorTest closed the lock cycles. so lock en than unlock. and after that ActuatorTest unlock does nothing.

this is @ 50%
20250207_090704.jpg
Sorry for the battery warning.
User avatar
uhi22
Posts: 1031
Joined: Mon Mar 14, 2022 3:20 pm
Location: Ingolstadt/Germany
Has thanked: 174 times
Been thanked: 581 times

Re: AC charging with Foccci and Zombie, not starting

Post by uhi22 »

manny wrote: Fri Feb 07, 2025 8:19 am Is it normal that when selecting ActuatorTest closed the lock cycles. so lock en than unlock. and after that ActuatorTest unlock does nothing.
Well, from users perspective this is indeed strange. The reason is, that the actuator test stops itself when it triggered the locking, and then the application comes and sees "oh, it is locked, and the AcObcState demands IDLE, so let's unlock". From my point of view there is a little bit more decoupling needed between the actuator test and the application, so that the tests for locking and unlocking are performed no matter what the application wants.
User avatar
johu
Site Admin
Posts: 6487
Joined: Thu Nov 08, 2018 10:52 pm
Location: Kassel/Germany
Has thanked: 303 times
Been thanked: 1406 times
Contact:

Re: AC charging with Foccci and Zombie, not starting

Post by johu »

The last time I tested the ActuatorTest wasn't disturbed as long as no cable is plugged in. So testing "Lock" locks it and only testing "Unlock" unlocks it. As soon as you plug in a cable the application logic takes over. Can you check that?

EDIT: nevermind, genius here added some new logic to allow charging again without power cycle:

Code: Select all

    //Not Plugged in and no CCS going (just to make sure we don't interfere with CCS if PP is not connected)
    else if (!Param::GetBool(Param::PlugPresent) && Param::GetInt(Param::opmode) == 0)
    {
        hardwareInterface_setStateB();
        Param::SetInt(Param::PortState, PS_IDLE);
        if (Param::GetInt(Param::LockState) == LOCK_CLOSED) //always unlock when nothing is plugged in
        {
            hardwareInterface_triggerConnectorUnlocking();
        }
    }
And that always operates the lock even with nothing plugged in.
Without this code stateC can get stuck on (in standalone mode) and some chargers don't like going straight to stateC. But maybe the lock doesn't need to be unlocked again and always...
Support R/D and forum on Patreon: https://patreon.com/openinverter - Subscribe on odysee: https://odysee.com/@openinverter:9
User avatar
tom91
Posts: 2169
Joined: Fri Mar 01, 2019 9:15 pm
Location: Bristol
Has thanked: 190 times
Been thanked: 491 times

Re: AC charging with Foccci and Zombie, not starting

Post by tom91 »

Good to see we are getting to the bottom of this.

It would be good to get someone else to also replicate these findings with a Foccci and Zombie setup.
Founder Volt Influx https://www.voltinflux.com/
Webstore: https://citini.com/
User avatar
uhi22
Posts: 1031
Joined: Mon Mar 14, 2022 3:20 pm
Location: Ingolstadt/Germany
Has thanked: 174 times
Been thanked: 581 times

Re: AC charging with Foccci and Zombie, not starting

Post by uhi22 »

Btw: I really like this kind of working together, everybody contributes some pieces and in the end we are together improving the things quite fast. Especially seeing the users perspective helps a lot to find the gaps of current Implementations. Thanks a lot :-)
User avatar
manny
Posts: 95
Joined: Sun Jan 23, 2022 4:15 pm
Location: Netherlands
Has thanked: 22 times
Been thanked: 68 times

Re: AC charging with Foccci and Zombie, not starting

Post by manny »

Same here. Love this stuff, not a lot of people in the netherlands working on/ building electric cars.

Thanks to you guys as well for building this tech in the first place, and helping out.
User avatar
johu
Site Admin
Posts: 6487
Joined: Thu Nov 08, 2018 10:52 pm
Location: Kassel/Germany
Has thanked: 303 times
Been thanked: 1406 times
Contact:

Re: AC charging with Foccci and Zombie, not starting

Post by johu »

I think I will change the "nothing plugged in" action to edge triggered so it fires only once when someone without lock just unplugs.
Right now it also inhbits the stateC test I guess
Support R/D and forum on Patreon: https://patreon.com/openinverter - Subscribe on odysee: https://odysee.com/@openinverter:9
Post Reply