A smart remote using the sparkfun IR transmitter and receiver. The program also uses a web server to show the buttons on a mobile platform.

Dependencies:   EthernetInterface HTTPServer RemoteIR SDFileSystem mbed-rpc mbed-rtos mbed

Fork of SmartRemoteClean by Sarvagya Vaish

Revision:
6:70a0af38edcc
Parent:
4:36e0aa194b45
--- a/IR.cpp	Tue Dec 03 02:41:56 2013 +0000
+++ b/IR.cpp	Tue Dec 03 03:49:12 2013 +0000
@@ -51,7 +51,7 @@
  */
 void display_status(char *status, int bitlength) {
 
-    printf("%-5.5s:%02d", status, bitlength);
+    printf("%-5.5s:%02d \n \r", status, bitlength);
 }
 
 /**
@@ -94,6 +94,7 @@
         printf("%02X", buf[i]);
     }
     for (int i = 0; i < 8 - n; i++) {
-        printf("--");
+        printf("--\n \r");
     }
+    
 }
\ No newline at end of file