Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vehicle/OVMS.V3/changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Open Vehicle Monitor System v3 - Change log

????-??-?? ??? ??????? OTA release
- Fiat eDoblo: added passive lock status from CAN 0x612.
- smart EQ:
As soon as the 12V trickle charge begins, a timestamp is generated and stored in `m_12v_trickle_charge_times`.
The counted value is set in `xsq.12v.trickle.count`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ Charge Control tba
Cabin Pre-heat/cool Control tba
Lock/Unlock Vehicle tba
Valet Mode Control ??
Others 12V battery, SoH, HV Battery voltage, odometer, front+read doors and trunk open status, footbrake (only pressed yes/no status), handbrake, VIN, battery current (+power), onboard charger temp, DC-DC temperature
Others 12V battery, SoH, HV Battery voltage, odometer, lock status, front+read doors and trunk open status, footbrake (only pressed yes/no status), handbrake, VIN, battery current (+power), onboard charger temp, DC-DC temperature
=========================== ==============
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,14 @@ void OvmsVehicleFiatEDoblo::IncomingFrameCan1(CAN_frame_t* p_frame)
// Byte 2 could be related to the charge current in bits 0011 1100
break;
}
case 0x612:
{
// Citroën e-Berlingo / Stellantis EMP2: byte 1 bit 1 indicates unlocked.
// Observed locked: 00 20 01 00 07 fe 00 10
// Observed unlocked: 00 22 01 00 07 fe 00 10
StandardMetrics.ms_v_env_locked->SetValue((d[1] & 0x02) == 0);
break;
}
}
}

Expand Down