2018-11-19 14:12:30 +01:00
|
|
|
|
|
|
|
const int trigPin = 9;
|
|
|
|
const int echoPin = 10;
|
|
|
|
const int ProxSensor = 2;
|
|
|
|
const int relayPin = 12;
|
2018-11-24 15:39:49 +01:00
|
|
|
const int buzzerPin = 3;
|
2018-11-19 14:12:30 +01:00
|
|
|
int inputVal = 0;
|
|
|
|
long duration;
|
|
|
|
int distance;
|
|
|
|
char piInput = 'N';
|
|
|
|
|
|
|
|
void setup() {
|
2018-11-24 15:39:49 +01:00
|
|
|
pinMode(trigPin, OUTPUT);
|
|
|
|
pinMode(echoPin, INPUT);
|
2018-11-19 14:12:30 +01:00
|
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
|
|
pinMode(relayPin, OUTPUT);
|
2018-11-24 15:39:49 +01:00
|
|
|
pinMode(buzzerPin, OUTPUT);
|
|
|
|
pinMode(ProxSensor,INPUT);
|
|
|
|
digitalWrite(buzzerPin, LOW);
|
2018-11-19 14:12:30 +01:00
|
|
|
digitalWrite(relayPin, LOW);
|
2018-11-24 15:39:49 +01:00
|
|
|
Serial.begin(9600);
|
2018-11-19 14:12:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
|
2018-11-24 15:39:49 +01:00
|
|
|
|
2018-11-19 14:12:30 +01:00
|
|
|
boolean IROK = false;
|
|
|
|
boolean UltraOK = false;
|
|
|
|
// Clears the trigPin
|
|
|
|
digitalWrite(trigPin, LOW);
|
|
|
|
delayMicroseconds(2);
|
|
|
|
// Sets the trigPin on HIGH state for 10 micro seconds
|
|
|
|
digitalWrite(trigPin, HIGH);
|
|
|
|
delayMicroseconds(10);
|
|
|
|
digitalWrite(trigPin, LOW);
|
|
|
|
// Reads the echoPin, returns the sound wave travel time in microseconds
|
|
|
|
duration = pulseIn(echoPin, HIGH);
|
|
|
|
// Calculating the distance
|
|
|
|
distance= duration*0.034/2;
|
|
|
|
|
|
|
|
if (distance < 70) UltraOK = true;
|
|
|
|
else UltraOK = false;
|
|
|
|
|
|
|
|
if(digitalRead(ProxSensor) == LOW ) IROK = true;
|
|
|
|
else IROK = false;
|
2018-11-24 17:58:35 +01:00
|
|
|
char pi = 'N';
|
|
|
|
if (Serial.available() > 0) { pi = Serial.read(); }
|
|
|
|
delay(500);
|
|
|
|
Serial.println(pi);
|
|
|
|
Serial.println(IROK);
|
|
|
|
Serial.println(UltraOK);
|
2018-11-19 14:12:30 +01:00
|
|
|
//if (IROK && UltraOK) Serial.println("A");
|
2018-11-24 17:58:35 +01:00
|
|
|
if (IROK && UltraOK && pi == 'o'){
|
|
|
|
//if (Serial.read() == 'o') {
|
2018-11-19 14:12:30 +01:00
|
|
|
digitalWrite(relayPin, HIGH);
|
2018-11-24 17:58:35 +01:00
|
|
|
playBuzzer(300,true);
|
2018-11-30 11:13:21 +01:00
|
|
|
delay(4000);
|
2018-11-19 14:12:30 +01:00
|
|
|
digitalWrite(relayPin, LOW);
|
|
|
|
IROK = false;
|
|
|
|
UltraOK = false;
|
2018-11-24 17:58:35 +01:00
|
|
|
pi = 'N';
|
2018-11-19 14:12:30 +01:00
|
|
|
serialFlush();
|
2018-11-24 17:58:35 +01:00
|
|
|
//}
|
2018-11-19 14:12:30 +01:00
|
|
|
}
|
|
|
|
IROK = false;
|
|
|
|
UltraOK = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialFlush(){
|
|
|
|
while(Serial.available() > 0) {
|
|
|
|
char t = Serial.read();
|
|
|
|
}
|
2018-11-24 15:39:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void playBuzzer(int time, boolean ok){
|
2018-11-24 17:58:35 +01:00
|
|
|
tone(buzzerPin, 3000);
|
|
|
|
delay(time/2);
|
|
|
|
noTone(buzzerPin);
|
|
|
|
delay(100);
|
|
|
|
tone(buzzerPin, 3000);
|
|
|
|
delay(time/2);
|
|
|
|
noTone(buzzerPin);
|
|
|
|
|
2018-11-24 15:39:49 +01:00
|
|
|
}
|
|
|
|
|
2018-11-19 14:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-24 17:58:35 +01:00
|
|
|
|
|
|
|
|