diff options
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/OBD2UART/OBD2UART.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libraries/OBD2UART/OBD2UART.cpp b/libraries/OBD2UART/OBD2UART.cpp index 8406251..826b3d2 100644 --- a/libraries/OBD2UART/OBD2UART.cpp +++ b/libraries/OBD2UART/OBD2UART.cpp @@ -634,7 +634,6 @@ bool COBD::memsOrientation(float& yaw, float& pitch, float& roll) char buf[64]; bool success = false; if (sendCommand("ATORI\r", buf, sizeof(buf)) > 0) do { - Serial.println(buf); char* p = getResultValue(buf); if (!p) break; yaw = (float)atof(p++); |