|
|
@ -293,25 +293,20 @@ void park(int parkingNo) { |
|
|
|
int Serial_Input() |
|
|
|
{ |
|
|
|
int number; |
|
|
|
<<<<<<< HEAD |
|
|
|
while (!Serial.available()) ; |
|
|
|
======= |
|
|
|
|
|
|
|
Serial.flush(); |
|
|
|
while(!Serial.available()) ; |
|
|
|
|
|
|
|
>>>>>>> dce72c29be70c5124af0193dc8a435a5deb10bfb |
|
|
|
if (Serial.available() > 0) { |
|
|
|
number = Serial.parseInt(); |
|
|
|
while (number <= 0) { |
|
|
|
// convert the incoming byte to a char and add it to the string:
|
|
|
|
number = Serial.parseInt(); |
|
|
|
Serial.print("Value:"); |
|
|
|
Serial.println(number); |
|
|
|
// clear the string for new input:
|
|
|
|
} |
|
|
|
|
|
|
|
// if you get a newline, print the string, then the string's value:
|
|
|
|
|
|
|
|
Serial.print("Value:"); |
|
|
|
Serial.println(number); |
|
|
|
// clear the string for new input:
|
|
|
|
} |
|
|
|
|
|
|
|
return number; |
|
|
|