SensorStream demo program that uses the 4 LEDs to indicate the accelerometer status

Dependencies:   C12832_lcd EthernetInterface SensorDataParser mbed-rtos mbed USBDevice

Fork of SensorStream_BlinkyDemo by Demo Team

Files at this revision

API Documentation at this revision

Comitter:
dan
Date:
Mon Oct 28 16:33:31 2013 +0000
Parent:
1:50e52569be43
Child:
3:7321fccc3d91
Commit message:
Change leds order

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Mon Oct 28 03:26:09 2013 +0000
+++ b/main.cpp	Mon Oct 28 16:33:31 2013 +0000
@@ -10,8 +10,8 @@
 
 DigitalOut led_left(LED1);
 DigitalOut led_up(LED2);
-DigitalOut led_down(LED3);
-DigitalOut led_right(LED4);
+DigitalOut led_right(LED3);
+DigitalOut led_down(LED4);
 
 // Configuration
 #define SERVER_PORT     5555