-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
93 lines (71 loc) · 2.3 KB
/
main.c
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Distance Sensor
#include <SoftwareSerial.h>
// All of these are constants associated to which arduino pins each of sensor/wire/etc are plugged into
#define echoPin 7
#define trigPin 8
// Bluetooth //old
#define TXpin 10 //5
#define RXpin 11 //4
#define signalPin 2
long duration;
long distance, distance_inches;
SoftwareSerial BTserial(TXpin,RXpin); // TX | RX
String bt_feedback = "";
bool BT_connected = false;
const byte BTSignalPin = 2;
void setup() {
Serial.begin(9600);
pinMode(echoPin, INPUT);
pinMode(trigPin, OUTPUT);
pinMode(BTSignalPin, INPUT);
// starts bluetooth output
BTserial.begin(9600);
Serial.println("Arduino Booted. Please connected Bluetooth device now.");
// wait for connection
while (!BT_connected) {
// Serial.println(digitalRead(BTSignalPin));
if (digitalRead(BTSignalPin)==HIGH)
{
BT_connected = true;
}
}
Serial.println("Thank you for choosing ShaZam BT.");
}
void loop() {
if (digitalRead(BTSignalPin)==HIGH) {
if (BTserial.available()) {
bt_feedback = String(BTserial.read());
String response = "[BLUETOOTH] " + bt_feedback;
Serial.println(response);
}
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
duration = pulseIn(echoPin, HIGH);
// distance is in centimeters after this line is ran
distance = ((duration / 29) / 2);
// distance is in inches after this line is ran
// 1 cm = 0.393701 in.
// distance_inches = distance * 0.393701;
// calculate if adjancent car is in blind spot
// an American lane is 12 feet wide
// 150 cm approx 5 ft, 250 cm approx 8 ft
if (distance >= 150 && distance <= 399)
Serial.println("------Adjancent Car within range------");
// the range of the ultrasonic sensor is only 400 cm so anything more is wrong
else if (distance > 399)
// no obj found, beyond the range of the sensor
Serial.println("Nearest Object too far away, ignore this");
else
Serial.println(distance);
BTserial.print(distance);
//Miliseconds
delay(50);
} else {
Serial.println("Bluetooth Disconnected. Please reconnect to continue");
if (digitalRead(BTSignalPin)==HIGH) {
BT_connected = true;
}
}
}