Hardware Braille Simulator / Mbed 2 deprecated CAN_SENDER

Dependencies:   mbed

Fork of CAN_SENDER by Aasheesh Francis

Revision:
1:1e64adaf93da
Parent:
0:b638c214ca06
Child:
2:44a3c2680cbf
--- a/main.cpp	Thu Feb 19 15:34:54 2015 +0000
+++ b/main.cpp	Thu Feb 19 15:36:28 2015 +0000
@@ -5,7 +5,6 @@
 //02/19/2015 
 //--------------------------------------------------------------
 CAN can(p9, p10);
-DigitalOut led(LED1);
 
 int main() {
     int messagecount = 0;
@@ -15,9 +14,6 @@
         if(can.read(msg)) {
             printf("%d ----- Message received: %d\n", messagecount, msg.data[0]);
             messagecount++;
-            led = 1;
-            wait(0.2);
-        }
-        led = 0; 
+        } 
     }
 }
\ No newline at end of file