// 4. Connect to CAN (500kbps) config.ProtocolID = CAN_500KBPS; config.Flags = CAN_ID_11_BIT; pConnect(deviceId, config, &channelId);
The DS150E software supports automation via its internal scripting engine. Scripts are stored in C:\ProgramData\Delphi\DS150E\Scripts\ . key programming with delphi ds150e
Select the exact Brand, Model, and Year in the software. System Access: Navigate to the Immobilizer or Body module. config.Flags = CAN_ID_11_BIT
You cannot just plug in a DS150E and cut a key. You need three critical components: dtc dtcList = GetDTCCodes(Channel
Here are some tips and tricks for using the Delphi DS150E:
' Save as "AutoLogDTCs.vbs" Sub OnConnect(Channel) Dim dtcList, dtc dtcList = GetDTCCodes(Channel, "Engine") For Each dtc In dtcList WriteToFile "C:\Logs\dtc_log.csv", Now & "," & dtc & "," & GetFreezeFrame(Channel, dtc) Next End Sub