-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch_feb19a.ino
57 lines (53 loc) · 1.45 KB
/
sketch_feb19a.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// defines pins numbers
const int trigPin = 9;
const int echoPin = 10;
int pin=2;
int pin2=4;
int pin3=6;
// defines variables
long duration;
int distance;
void setup() {
// put your setup code here, to run once:
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
pinMode(pin,OUTPUT);
pinMode(pin2,OUTPUT);
pinMode(pin3,OUTPUT);
Serial.begin(9600); // Starts the serial communication
}
void loop() {
// put your main code here, to run repeatedly:
// 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;
// Prints the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.println(distance);
if(distance<5){
digitalWrite(2,HIGH);
digitalWrite(6,HIGH);
digitalWrite(4,HIGH);
}
else if(distance<10){
digitalWrite(4,HIGH);
digitalWrite(2,HIGH);
digitalWrite(6,LOW);
}
else if(distance<20){
digitalWrite(6,HIGH);
delay(1000);
digitalWrite(6,LOW);
digitalWrite(2,LOW);
digitalWrite(4,LOW);
delay(1000);
}
}