#include // Includes servo library. // defines pins numbers const int trigPin = 12; const int echoPin = 11; const int lm1=7; const int lm2=6; const int rm1=5; const int rm2=4; const int servoPin=13; //the time we give the sensor to calibrate (10-60 secs according to the datasheet) int calibrationTime = 30; //the time when the sensor outputs a low impulse long unsigned int lowIn; //the amount of milliseconds the sensor has to be low //before we assume all motion has stopped long unsigned int pause = 5000; boolean lockLow = true; boolean takeLowTime; int pirPin = 2; //the digital pin connected to the PIR sensor's output int ledPin = 9; Servo myservo; // orizw katholikes metavlites gia na tis peirazw apo tis sunartiseis kai na boroun na allazoun kai timh long duration; int distance; int distance_f; //apostash tou amaksiou apo antikeimeno eutheia int distance_r; //apostash tou amaksiou apo antikeimeno deksia int distance_l; //apostash tou amaksiou apo antikeimeno aristera int maxLowDistance=20; //elaxisth apostash sthn opia ama vrethw stamataw void setup() { pinMode(pirPin, INPUT); pinMode(ledPin, OUTPUT); digitalWrite(pirPin, LOW); //give the sensor some time to calibrate Serial.print("calibrating sensor "); for(int i = 0; i < calibrationTime; i++){ Serial.print("."); delay(1000); } Serial.println(" done"); Serial.println("SENSOR ACTIVE"); delay(50); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); pinMode(lm1,OUTPUT); //orizw tis metavlites gia tous kinitires mou gia na borw na tous diaxiristw pinMode(lm2,OUTPUT); pinMode(rm1,OUTPUT); pinMode(rm2,OUTPUT); myservo.attach(servoPin); myservo.write(90); Serial.begin(9600); // Starts the serial communication } void loop() { if(digitalRead(pirPin) == HIGH){ digitalWrite(ledPin, HIGH); //the led visualizes the sensors output pin state if(lockLow){ //makes sure we wait for a transition to LOW before any further output is made: lockLow = false; Serial.println("---"); Serial.print("motion detected at "); Serial.print(millis()/1000); Serial.println(" sec"); delay(50); } takeLowTime = true; } if(digitalRead(pirPin) == LOW){ digitalWrite(ledPin, LOW); //the led visualizes the sensors output pin state if(takeLowTime){ lowIn = millis(); //save the time of the transition from high to LOW takeLowTime = false; //make sure this is only done at the start of a LOW phase } //if the sensor is low for more than the given pause, //we assume that no more motion is going to happen if(!lockLow && millis() - lowIn > pause){ //makes sure this block of code is only executed again after //a new motion sequence has been detected lockLow = true; Serial.print("motion ended at "); //output Serial.print((millis() - pause)/1000); Serial.println(" sec"); delay(50); } } distance_f=ping(); //Psaxnw gia thn apostash pou exw brosta mou if(distance_f > maxLowDistance){ //An einai megaluteri apo 20cm h apostash tou amaksiou apo to prwto ebodio (diladi thn elaxisth apostash pou tou exw orisei) tote tha paei eutheia displayDistance(); //to kanw gia na kanw debug kai na kserw oti leitourgei o aisthititras apostashs front(); //kalw thn sunartisi gia na paei brosta to amaksi mou delay(300); }else{ //An den einai megaluteri apo 20cm h apostash tou amaksiou apo to prwto ebodio Break(); //Kalw thn sunartisi break gia na stamatisei na kineite to amaksi get_Distance(); //kalw thn get_distance kai pernw plirofories gia tis apo staseis pou exw gyrw mou if(distance_r > maxLowDistance){ //pleon gnorizw ti exw deksia mou kai elegxw an yparxei ebodio sta epomena 20cm brosta mou. right(); //an den exw ebodio stivw epitopou deksia delay(300); front(); }else if(distance_l > maxLowDistance){ left(); delay(300); front(); }else{ back(); delay(300); Break(); } } } //thn exw gia debug ayth thn sunartisi gia na dw an leitourgei o esthitiras swsta kai an katagrafontai oi times gia tis apostaseis eutheia deksia kai aristera void displayDistance(){ Serial.print("Right Distance : "); Serial.print(distance_r); Serial.println(""); Serial.print("Front Distance : "); Serial.print(distance_f); Serial.println(""); Serial.print("Left Distance : "); Serial.print(distance_l); Serial.println(""); } //Logo tou oloklirwmenou LM298 borw na diaxiristw kai pio eukola to amaksaki mou //exw ftiaksei 5 sunartiseis gia na boreis na pigainei brosta pisw aristera deksia kai na stamataei //shnarthsh gia na pigenei brosta to amaksi void front(){ Serial.println("Forward Move"); //vazw se leitourgeia kai tous 4 troxous digitalWrite(lm2,HIGH); digitalWrite(rm2,HIGH); digitalWrite(lm1,LOW); digitalWrite(rm1,LOW); } //shnarthsh gia na pigenei pisw to amaksi void back(){ Serial.println("Back Move"); //vazw se leitourgeia kai tous 4 troxous alla antistrefw thn polikothta gia na paei pros ta pisw digitalWrite(lm1,HIGH); digitalWrite(rm1,HIGH); digitalWrite(lm2,LOW); digitalWrite(rm2,LOW); } //shnarthsh gia na pigenei aristera to amaksi void left(){ Serial.println("Left Move"); digitalWrite(rm2,HIGH); //vazw se leitourgeia mono tous dyo deksious troxous digitalWrite(rm1,LOW); digitalWrite(lm1,HIGH); digitalWrite(lm2,LOW); } //shnarthsh gia na pigenei deksia to amaksi void right(){ Serial.println("Right Move"); digitalWrite(lm2,HIGH); //vazw se leitourgeia mono tous dyo aristerous troxous digitalWrite(lm1,LOW); digitalWrite(rm1,HIGH); digitalWrite(rm2,LOW); } //shnarthsh gia na pigenei stamataei to amaksi void Break(){ digitalWrite(lm2,LOW); //vgazw apo thn leitourgeia kai tous 4 troxous digitalWrite(lm1,LOW); digitalWrite(rm1,LOW); digitalWrite(rm2,LOW); } void get_Distance(){ myservo.write(0); //gurnaw to servo mou deksia gia na boresei na parei metrisi o aisthitiras delay(500); int temp_r1=ping(); //pernw thn apostash deksia mou myservo.write(45); //gurnaw to servo mou 45 moires (diladi loksa deksia) delay(500); int temp_r2=ping(); //pernw thn apostash gia tis 45 moires if(temp_r1