Thank you for quick response, I'll do that
Simp BMS
-
- Posts: 24
- Joined: Thu Mar 23, 2023 11:29 am
- Has thanked: 1 time
Re: Simp BMS
Please see the current settings on the dashboard. Let me know if you see anything I'm missing.
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times
-
- Posts: 24
- Joined: Thu Mar 23, 2023 11:29 am
- Has thanked: 1 time
Re: Simp BMS
When I plug In the EVSE it indicates ready on the EVSE. Nothing happens, no fan, no charge. I have 12volts at the simp charge, good ground. All connections are secure. I have the proper resister in place as well. I was wondering if any of my parameters need to be adjusted in the photos above
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times
Re: Simp BMS
This is not the SimpBMS but Vero-BMS I believe reach out directly to them. https://veroelectric.com/product/vero-bms-v2
-
- Posts: 24
- Joined: Thu Mar 23, 2023 11:29 am
- Has thanked: 1 time
Re: Simp BMS
Hello 
Has anyone run simp bms on lilygo T-CAN485 ESP32 segregator RS-485 ?
https://pl.aliexpress.com/item/10050036 ... pt=glo2pol

Has anyone run simp bms on lilygo T-CAN485 ESP32 segregator RS-485 ?
https://pl.aliexpress.com/item/10050036 ... pt=glo2pol
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times
- Bigpie
- Posts: 1787
- Joined: Wed Apr 10, 2019 8:11 pm
- Location: South Yorkshire, UK
- Has thanked: 83 times
- Been thanked: 431 times
Re: Simp BMS
Post moved to a new topic
BMW E91 2006
ZombieVerter
GS450h
Outlander Charger DC/DC
Outlander Compressor
Renault Kangoo 36kWh battery
FOCCCI CCS
ZombieVerter
GS450h
Outlander Charger DC/DC
Outlander Compressor
Renault Kangoo 36kWh battery
FOCCCI CCS
-
- Posts: 118
- Joined: Tue Sep 22, 2020 6:48 pm
- Has thanked: 17 times
- Been thanked: 22 times
Re: Simp BMS
I have an Eltek valere charger "eltek PC" I have used it successfully before in normal operation (ev)
Is it possible to charge in ESS mode using the AC present pin?
I want to use it in parallel to an inverter to charge at a higher rate.
thankyou
Is it possible to charge in ESS mode using the AC present pin?
I want to use it in parallel to an inverter to charge at a higher rate.
thankyou
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times
Re: Simp BMS
Using more then one type of charger is not supported.bigmotherwhale wrote: ↑Mon Jul 14, 2025 3:13 pm I want to use it in parallel to an inverter to charge at a higher rate.
-
- Posts: 118
- Joined: Tue Sep 22, 2020 6:48 pm
- Has thanked: 17 times
- Been thanked: 22 times
Re: Simp BMS
what would be the issue? the inverter is not controlled by simpbms, the eltek pc will be the only charger the simpbms "sees"
thankyou
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times
Re: Simp BMS
You did not specify that. Then yes you can just have the SimpBMS configured with Eltek charger in ESS mode it continuedly sends the messages for chargers.bigmotherwhale wrote: ↑Mon Jul 14, 2025 4:49 pm what would be the issue? the inverter is not controlled by simpbms, the eltek pc will be the only charger the simpbms "sees"
-
- Posts: 118
- Joined: Tue Sep 22, 2020 6:48 pm
- Has thanked: 17 times
- Been thanked: 22 times
Re: Simp BMS
sorry
does it turn off and on using the AC present pin like in EV mode?
that would be easier than using a relay to control AC mains to the charger
thanks again.
does it turn off and on using the AC present pin like in EV mode?
that would be easier than using a relay to control AC mains to the charger
thanks again.
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times
Re: Simp BMS
bigmotherwhale wrote: ↑Mon Jul 14, 2025 4:58 pm does it turn off and on using the AC present pin like in EV mode?
-
- Posts: 118
- Joined: Tue Sep 22, 2020 6:48 pm
- Has thanked: 17 times
- Been thanked: 22 times
Re: Simp BMS
I think the code may have changed which is why im confused, do i have to put the serial number in manually for eltekPC and then flash it?
There is no longer a message received in 0x350 that is entered into ChargerSerial that i can find in the code or am I mistaken?
There is no longer a message received in 0x350 that is entered into ChargerSerial that i can find in the code or am I mistaken?
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times
-
- Posts: 118
- Joined: Tue Sep 22, 2020 6:48 pm
- Has thanked: 17 times
- Been thanked: 22 times
Re: Simp BMS
OutlanderBMSv2.ino
#define EltekPC 7
requires a login on 0x351
byte ChargerSerial[6];
there is no longer any code to take the charger announce from the 0x350 and plug it into ChargerSerial
also can i add to the if statement of ESS mode to use the AC present to enable charging?
like this:
if (millis() - looptime1 > settings.chargerspd) {
looptime1 = millis();
if (settings.ESSmode == 1 && digitalRead(IN3) == HIGH ) {
chargercomms();
} else {
if (bmsstatus == Charge) {
chargercomms();
}
#define EltekPC 7
requires a login on 0x351
byte ChargerSerial[6];
there is no longer any code to take the charger announce from the 0x350 and plug it into ChargerSerial
also can i add to the if statement of ESS mode to use the AC present to enable charging?
like this:
if (millis() - looptime1 > settings.chargerspd) {
looptime1 = millis();
if (settings.ESSmode == 1 && digitalRead(IN3) == HIGH ) {
chargercomms();
} else {
if (bmsstatus == Charge) {
chargercomms();
}
- tom91
- Posts: 2460
- Joined: Fri Mar 01, 2019 9:15 pm
- Location: Bristol
- Has thanked: 216 times
- Been thanked: 606 times