From 5c4300402d931b2cb53db7214877d9b7e69a8416 Mon Sep 17 00:00:00 2001 From: Stanley Huang Date: Fri, 29 Nov 2013 23:13:36 +1100 Subject: update OBD-II library --- .../OBD/examples/rpm_led_uart/rpm_led_uart.ino | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 libraries/OBD/examples/rpm_led_uart/rpm_led_uart.ino (limited to 'libraries/OBD/examples/rpm_led_uart') diff --git a/libraries/OBD/examples/rpm_led_uart/rpm_led_uart.ino b/libraries/OBD/examples/rpm_led_uart/rpm_led_uart.ino new file mode 100644 index 0000000..8a2ae42 --- /dev/null +++ b/libraries/OBD/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 +* Copyright (c) 2012-2013 Stanley Huang +* All rights reserved. +*************************************************************************/ + +#include + +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.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); + } +} -- cgit v1.2.3