diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-07-28 11:23:38 +0800 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-07-28 11:23:38 +0800 |
commit | 81cf413d99aec5eeffa88e32f1f8fd34c724723f (patch) | |
tree | c92c84b3575d0ebaeb7a45f8758d3d8567383395 /libraries/OBD/examples | |
parent | 1e56a244b3e0bdb434ac507a49b359767886be81 (diff) | |
download | 2021-arduino-obd-81cf413d99aec5eeffa88e32f1f8fd34c724723f.tar.gz 2021-arduino-obd-81cf413d99aec5eeffa88e32f1f8fd34c724723f.tar.bz2 2021-arduino-obd-81cf413d99aec5eeffa88e32f1f8fd34c724723f.zip |
minor updates for OBD library
Diffstat (limited to 'libraries/OBD/examples')
-rw-r--r-- | libraries/OBD/examples/rpm_led/rpm_led.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/OBD/examples/rpm_led/rpm_led.ino b/libraries/OBD/examples/rpm_led/rpm_led.ino index 9ebf34f..669d690 100644 --- a/libraries/OBD/examples/rpm_led/rpm_led.ino +++ b/libraries/OBD/examples/rpm_led/rpm_led.ino @@ -14,7 +14,7 @@ void setup() { // we'll use the debug LED as output pinMode(13, OUTPUT); - // start serial communication at the adapter defined baudrate + // start communication with OBD-II UART adapter obd.begin(); // initiate OBD-II connection until success while (!obd.init()); |