summaryrefslogtreecommitdiff
path: root/libraries/OBD/examples/rpm_led_i2c
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/OBD/examples/rpm_led_i2c')
-rw-r--r--libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino31
1 files changed, 31 insertions, 0 deletions
diff --git a/libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino b/libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino
new file mode 100644
index 0000000..c80eba9
--- /dev/null
+++ b/libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino
@@ -0,0 +1,31 @@
+/*************************************************************************
+* Sample sketch based on OBD-II library for Arduino
+* Distributed under GPL v2.0
+* Copyright (c) 2012-2013 Stanley Huang <stanleyhuangyc@gmail.com>
+* All rights reserved.
+*************************************************************************/
+
+#include <Wire.h>
+#include <OBD.h>
+
+COBDI2C 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.read(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);
+ }
+}