bananaMechanic
bananaMechanic
I don't have a debug, but this is from the putty session when I was logged into the older VPW truck, just showing the header and the response to the...
`error: 'class ELM327' has no member named 'response_A'; did you mean 'response'?` version 3.4.1 I found this in the .cpp... ``` // Assign extracted values to response_A, response_B, ..., response_H...
`int A = myELM327.responseByte_0;` (I copy/pasted the command from my code and not your response to typo-check myself) still just returns zero when I serial.print(A) ``` Clearing input serial buffer...
Rats. Still all zeros. ``` if (myELM327.nb_rx_state == ELM_SUCCESS) // Our response is fully received, let's get our data { int A = myELM327.responseByte_0; // Parse the temp value A...
This feels like it can't be the right way to do it, but it DOES give me an integer with only the last byte of the response. I'm tinkering with...
I was fooling around with an online C++ simulator during some downtime at work and came up with this. It's converting the c-style payload string into a c++ string, then...