-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArduino_Radar.pde
More file actions
131 lines (125 loc) · 3.31 KB
/
Arduino_Radar.pde
File metadata and controls
131 lines (125 loc) · 3.31 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import processing.serial.*;
import java.awt.event.KeyEvent;
import java.io.IOException;
Serial myPort;
String angle="";
String distance="";
String data="";
String noObject;
float pixsDistance;
int iAngle, iDistance;
int index1=0;
int index2=0;
PFont orcFont;
void setup() {
size (1920, 1080);
smooth();
myPort = new Serial(this, "COM6", 9600);
myPort.bufferUntil('.');
}
void draw() {
fill(98, 245, 31);
noStroke();
fill(0, 4);
rect(0, 0, width, 1010);
fill(98, 245, 31);
drawRadar();
drawLine();
drawObject();
drawText();
}
void serialEvent (Serial myPort) {
data = myPort.readStringUntil('.');
data = data.substring(0, data.length()-1);
index1 = data.indexOf(",");
angle= data.substring(0, index1);
distance= data.substring(index1+1, data.length());
iAngle = int(angle);
iDistance = int(distance);
}
void drawRadar() {
pushMatrix();
translate(960, 1000);
noFill();
strokeWeight(2);
stroke(98, 245, 31);
// draws the arc lines
arc(0, 0, 1800, 1800, PI, TWO_PI);
arc(0, 0, 1400, 1400, PI, TWO_PI);
arc(0, 0, 1000, 1000, PI, TWO_PI);
arc(0, 0, 600, 600, PI, TWO_PI);
// draws the angle lines
line(-960, 0, 960, 0);
line(0, 0, -960*cos(radians(30)), -960*sin(radians(30)));
line(0, 0, -960*cos(radians(60)), -960*sin(radians(60)));
line(0, 0, -960*cos(radians(90)), -960*sin(radians(90)));
line(0, 0, -960*cos(radians(120)), -960*sin(radians(120)));
line(0, 0, -960*cos(radians(150)), -960*sin(radians(150)));
line(-960*cos(radians(30)), 0, 960, 0);
popMatrix();
}
void drawObject() {
pushMatrix();
translate(960, 1000);
strokeWeight(9);
stroke(255, 10, 10);
pixsDistance = iDistance*22.5;
if (iDistance<40) {
line(pixsDistance*cos(radians(iAngle)), -pixsDistance*sin(radians(iAngle)), 950*cos(radians(iAngle)), -950*sin(radians(iAngle)));
}
popMatrix();
}
void drawLine() {
pushMatrix();
strokeWeight(9);
stroke(30, 250, 60);
translate(960, 1000); // moves the starting coordinats to new location
line(0, 0, 950*cos(radians(iAngle)), -950*sin(radians(iAngle))); // draws the line according to the angle
popMatrix();
}
void drawText() {
pushMatrix();
if (iDistance>40) {
noObject = "Out of Range";
} else {
noObject = "In Range";
}
fill(0, 0, 0);
noStroke();
rect(0, 1010, width, 1080);
fill(98, 245, 31);
textSize(25);
text("10cm", 1180, 990);
text("20cm", 1380, 990);
text("30cm", 1580, 990);
text("40cm", 1780, 990);
textSize(40);
text("Object: " + noObject, 240, 1050);
text("Angle: " + iAngle +" °", 1050, 1050);
text("Distance: ", 1380, 1050);
if (iDistance<40) {
text(" " + iDistance +" cm", 1400, 1050);
}
textSize(25);
fill(98, 245, 60);
translate(961+960*cos(radians(30)), 982-960*sin(radians(30)));
rotate(-radians(-60));
text("30°", 0, 0);
resetMatrix();
translate(954+960*cos(radians(60)), 984-960*sin(radians(60)));
rotate(-radians(-30));
text("60°", 0, 0);
resetMatrix();
translate(945+960*cos(radians(90)), 990-960*sin(radians(90)));
rotate(radians(0));
text("90°", 0, 0);
resetMatrix();
translate(935+960*cos(radians(120)), 1003-960*sin(radians(120)));
rotate(radians(-30));
text("120°", 0, 0);
resetMatrix();
translate(940+960*cos(radians(150)), 1018-960*sin(radians(150)));
rotate(radians(-60));
text("150°", 0, 0);
popMatrix();
}