Coordinator v2

Dependencies:   NerfUSXbee PinDetect EthernetInterface JSON MFRC522 WebSocketClient mbed-rtos mbed

Revision:
2:019d8848cf7e
Parent:
1:e1c5259b7d9a
--- a/includes/GameModes/ReflexMode.hpp	Mon Apr 10 15:02:24 2017 -0400
+++ b/includes/GameModes/ReflexMode.hpp	Tue Apr 11 12:40:05 2017 -0400
@@ -12,7 +12,7 @@
     void OnTargetHit(int timeTaken)
     {
       stats.targets++;
-      stats.score += 5;
+      stats.score += 2;
     }
     void OnTargetMiss()
     {
@@ -20,6 +20,6 @@
     }  
     int getTimeBetweenTargets()
     {
-      return rand() % 3000 + 500;
+      return (rand() % 3000) + 1000;
     }
 };
\ No newline at end of file