IT Tralee experiment

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
bmol
Date:
Sun Jul 26 11:55:18 2020 +0000
Parent:
0:c6cc8dea2f4d
Commit message:
IT tralee

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sun Jul 26 11:47:10 2020 +0000
+++ b/main.cpp	Sun Jul 26 11:55:18 2020 +0000
@@ -12,14 +12,14 @@
         if((c == 'u') && (brightness < 0.5)) {
             brightness += 0.01;
             led = brightness;
-            pc.putc('^');//Extra code returns the character '^' on the pc interface
+            
 
         }
 
         if((c == 'd') && (brightness > 0.0)) {
             brightness -= 0.01;
             led = brightness;
-            pc.putc('v');//Extra code returns the character 'v' on the pc interface
+            
         }
     }
 }
\ No newline at end of file