New project

Dependencies:   mbed TextLCD

Revision:
31:9d973398554f
Parent:
25:90f7a34c253a
--- a/Detector.cpp	Mon Jun 25 14:57:17 2018 +0000
+++ b/Detector.cpp	Thu Jun 28 15:08:41 2018 +0000
@@ -3,7 +3,7 @@
 
 Detector::Detector(bool setValue): lcd(p22, p21, p23, p24, p25, p26)
 {
-    for(int i = 0; i < 14; i++)
+    for(int i = 0; i < 16; i++)
         detector.push_back(setValue);
     
 }
@@ -31,7 +31,7 @@
 }
 void Detector::showReservation(){
     lcd.printf("Res:");
-    for(int i = 0; i<14; i++){
+    for(int i = 0; i<16; i++){
         if(detector.at(i))
             lcd.printf("%d ", i); 
     }