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

Revision:
1:ad4f4815bcde
Parent:
0:3ef14b050782
--- 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
         }
-        
     }
-
 }