-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to implement custom PIDs? #278
Comments
Have a look at this example sketch. ELMduino will parse the PID for you. (FYI, it's Service:0x22 and PID 0x9002 above). |
So does jumpjack change myELM327.sendCommand("2204FE"); to myELM327.sendCommand("229002"); to get his desired input, then apply his needed math to get his desired value? asking because I am looking for a ford transmission temp that is 221674 Thanks |
@Maximize0987, yes that’s correct. In your case you would call myELM327.sendCommand("221674”); |
any help on formulas? I am hoping to include these in a sketch would the call you stated return a and b? ModeAndPID / Name / Min / Max Unit / Formula / Header 221674 / Trans Fluid Temp / 0 / 250 F / ((A*256)+B)/8 / 0 |
Given these data:
How do I implement in the source code the call to PID 229002? I.E. how do I get Service and PID from number 229002?
The text was updated successfully, but these errors were encountered: