Make delay_time a constant
This commit is contained in:
parent
4db98d53cd
commit
f6886a7a78
1 changed files with 2 additions and 2 deletions
|
@ -18,11 +18,11 @@ void setup(){
|
|||
pinMode(GREEN_LED_OUTPUT_PIN, OUTPUT);
|
||||
}
|
||||
|
||||
const int DELAY_TIME = 1000;
|
||||
const int THRESHOLD = 20;
|
||||
|
||||
int space_status = THRESHOLD / 2;
|
||||
int space_status_b4 = 0;
|
||||
int delay_time = 1000;
|
||||
|
||||
void loop(){
|
||||
int pin_status = 0;
|
||||
|
@ -32,7 +32,7 @@ void loop(){
|
|||
Serial.print(space_status_b4);
|
||||
Serial.print(" ");
|
||||
Serial.println(space_status);
|
||||
delay(delay_time);
|
||||
delay(DELAY_TIME);
|
||||
|
||||
// pin check of the reed sensor and low pass filter
|
||||
if (pin_status == 0){
|
||||
|
|
Reference in a new issue