Question ECU for car reading with OBD

doot47

New member
Joined
Aug 18, 2021
Messages
1
Programming Experience
Beginner
Hi,
Any one have source code for reading ecu for car with obd like obdlink sx

you can see my first code start to read
C#:
                                this.MSCommCAN.Write("at  sp4\r\n");
                                this.xWait(100L);
                                this.MSCommCAN.Write("at iia 7A\r\n");
                                this.xWait(100L);
                                this.MSCommCAN.Write("at  sh 817AF1 \r\n");
                                this.xWait(100L);
                                this.MSCommCAN.Write("STIBR 115200\r\n"); //115200 //62500
                                this.xWait(50L);
                                this.MSCommCAN.Write("at  AL\r\n");
                                this.xWait(100L);
                                this.MSCommCAN.Write("AT S0\r\n");
                                this.xWait(100L);
                                this.MSCommCAN.Write("AT E1\r\n");
                                this.xWait(100L);
                                this.MSCommCAN.Write("at  r1\r\n");
 
Welcome to the forum. In the future, please post your code in code tags.

Moving your forum out of "C# General Discussions" to something more appropriate...
 
We highly discourage begging for code on this forum. If you are having a problem with your code, tell us what problem you are running into. What behavior are you seeing? What behavior were you expecting to see? What have you done to try to resolve the problem yourself?
 
Back
Top Bottom