summaryrefslogtreecommitdiff
path: root/libraries/OBD2UART/examples/rpm_led_uart
diff options
context:
space:
mode:
authorStanley Huang <stanleyhuangyc@live.com>2016-06-26 20:53:03 +0800
committerStanley Huang <stanleyhuangyc@live.com>2016-06-26 20:53:03 +0800
commit243b5fa4ddd06b845a68abccb0a109584cf0fa38 (patch)
tree853ff2c83711e6ef0b55b919ec54b195aa49a739 /libraries/OBD2UART/examples/rpm_led_uart
parent80112f02d05aed34035534b342b320854d445cba (diff)
download2021-arduino-obd-243b5fa4ddd06b845a68abccb0a109584cf0fa38.tar.gz
2021-arduino-obd-243b5fa4ddd06b845a68abccb0a109584cf0fa38.tar.bz2
2021-arduino-obd-243b5fa4ddd06b845a68abccb0a109584cf0fa38.zip
Library and examples for OBD-II UART Adapter MK2
Diffstat (limited to 'libraries/OBD2UART/examples/rpm_led_uart')
-rw-r--r--libraries/OBD2UART/examples/rpm_led_uart/rpm_led_uart.ino30
1 files changed, 30 insertions, 0 deletions
diff --git a/libraries/OBD2UART/examples/rpm_led_uart/rpm_led_uart.ino b/libraries/OBD2UART/examples/rpm_led_uart/rpm_led_uart.ino
new file mode 100644
index 0000000..3e80ae3
--- /dev/null
+++ b/libraries/OBD2UART/examples/rpm_led_uart/rpm_led_uart.ino
@@ -0,0 +1,30 @@
+/*************************************************************************
+* Sample sketch based on OBD-II library for Arduino
+* Distributed under GPL v2.0
+* Visit http://freematics.com for more information
+* (C)2012-2014 Stanley Huang <stanleyhuangyc@gmail.com>
+*************************************************************************/
+
+#include <OBD2UART.h>
+
+COBD obd;
+
+void setup()
+{
+ // we'll use the debug LED as output
+ pinMode(13, OUTPUT);
+ // start communication with OBD-II UART adapter
+ obd.begin();
+ // initiate OBD-II connection until success
+ while (!obd.init());
+}
+
+void loop()
+{
+ int value;
+ if (obd.readPID(PID_RPM, value)) {
+ // RPM is successfully read and its value stored in variable 'value'
+ // light on LED when RPM exceeds 3000
+ digitalWrite(13, value > 3000 ? HIGH : LOW);
+ }
+}