Grove collision sensor example. This example program demonstrates usage of the Grove collision sensor from Seeed studio.

Dependencies:   mbed

Fork of Seeed_Grove_Collision_Sensor_Example by Austin Blackstone

Files at this revision

API Documentation at this revision

Comitter:
mbedAustin
Date:
Wed Sep 03 20:24:14 2014 +0000
Parent:
0:3ef14b050782
Commit message:
cleaned up unnecessary variable

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Sep 03 19:09:25 2014 +0000
+++ b/main.cpp	Wed Sep 03 20:24:14 2014 +0000
@@ -5,17 +5,10 @@
 
 int main()
 {
-    bool value1;
-    
-    while(1){
-        value1 = sig1;
-
-        if(sig1 == 0)
-        {
+    while(1) {
+        if(sig1 == 0) {
             printf("Collision detected!\n\r");
             wait(1);    // 1 second delay
         }
-        
     }
-
 }