-
Notifications
You must be signed in to change notification settings - Fork 0
/
PIC_Bluetooth.pde
243 lines (201 loc) · 5.49 KB
/
PIC_Bluetooth.pde
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import processing.serial.*;
Serial serial;
int autoX, autoY; // Position of square button
int openX, openY; // Position of circle button
int closeX, closeY; // Position of square button
int halfX, halfY; // Position of circle button
int autoSize = 90; // Diameter of rect
int openSize = 93; // Diameter of circle
int closeSize = 93;
int halfSize = 93;
color baseColor;
color currentColor;
boolean autoOver = false;
boolean openOver = false;
boolean closeOver = false;
boolean halfOver = false;
boolean status_open = false;
boolean status_auto = false;
boolean status_close = false;
boolean status_half = false;
void setup() {
size(640, 360);
baseColor = color(102);
currentColor = baseColor;
autoX = 130;
autoY = 50;
openX = 430;
openY = 100;
closeX = 175;
closeY = 250;
halfX = 430;
halfY = 250;
ellipseMode(CENTER);
serial = new Serial(this, "COM10", 9600); // tương tự lệnh serial. truyền vào COM3 là cổng giao tiếp, baudrate: 9600
}
void draw() {
update(mouseX, mouseY);
background(currentColor);
surface.setTitle("CONTROL WINDOW WITH BLUETOOTH");//đặt tên cho task
//--------------------
if (autoOver) {
fill(color(58,171,58));
} else {
fill(color(200));
}
stroke(0);
rect(autoX, autoY, autoSize, autoSize);
textSize(20); // cấu hình kích thước chữ
text("AUTO MODE", autoX - 10, autoY + 120); // tạo ký tự LIGHT tại vị trí 280x130
if(status_auto == true){
textSize(32); // cấu hình kích thước chữ
text("AUTO MODE ON", 190, 30); // tạo ký tự LIGHT tại vị trí 280x130
}
//------------------------
if (openOver) {
fill(color(196,47,14));
} else {
fill(color(200));
}
stroke(0);
ellipse(openX, openY, openSize, openSize);
textSize(20); // cấu hình kích thước chữ
text("OPEN WINDOW", openX - 65, openY + 70); // tạo ký tự LIGHT tại vị trí 280x130
if(status_open == true){
textSize(32); // cấu hình kích thước chữ
text("OPEN WINDOW", 190, 30); // tạo ký tự LIGHT tại vị trí 280x130
}
//--------------------
if (closeOver) {
fill(color(242,235,24));
} else {
fill(color(200));
}
stroke(0);
ellipse(closeX, closeY, closeSize, closeSize);
textSize(20); // cấu hình kích thước chữ
text("CLOSE WINDOW", closeX - 75, closeY + 70); // tạo ký tự LIGHT tại vị trí 280x130
if(status_close == true){
textSize(32); // cấu hình kích thước chữ
text("CLOSE WINDOW", 190, 30); // tạo ký tự LIGHT tại vị trí 280x130
}
//-----------------------
if (halfOver) {
fill(color(24,242,235));
} else {
fill(color(200));
}
stroke(0);
ellipse(halfX, halfY, halfSize, halfSize);
textSize(20); // cấu hình kích thước chữ
text("HALF WINDOW", halfX - 65, halfY + 70); // tạo ký tự LIGHT tại vị trí 280x130
if(status_half == true){
textSize(32); // cấu hình kích thước chữ
text("OPEN HALF WINDOW", 150, 30); // tạo ký tự LIGHT tại vị trí 280x130
//--------------------------
}
}
void update(int x, int y) {
openOver = autoOver = false;
if ( overOpen(openX, openY, openSize) ) {
openOver = true;
autoOver = false;
halfOver = false;
closeOver = false;
}
if ( overAuto(autoX, autoY, autoSize, autoSize) ) {
autoOver = true;
openOver = false;
halfOver = false;
closeOver = false;
}
if ( overClose(closeX, closeY, closeSize) ) {
closeOver = true;
autoOver = false;
openOver = false;
halfOver = false;
}
if ( overHalf(halfX, halfY, halfSize) ) {
halfOver= true;
autoOver = false;
openOver = false;
closeOver = false;
}
}
void mousePressed() {
if (autoOver) {
status_auto = true;
status_open = false;
status_close = false;
status_half = false;
for(int i=0; i<10; i++)
{
serial.write("A");
}
}
if (openOver) {
status_auto = false;
status_open = true;
status_close = false;
status_half = false;
for(int i=0; i<50; i++)
{
serial.write("O");
}
}
if (closeOver) {
status_auto = false;
status_open = false;
status_close = true;
status_half = false;
for(int i=0; i<50; i++)
{
serial.write("C");
}
}
if (halfOver) {
status_auto = false;
status_open = false;
status_close = false;
status_half = true;
for(int i=0; i<30; i++)
{
serial.write("H");
}
}
}
boolean overAuto(int x, int y, int width, int height) {
if (mouseX >= x && mouseX <= x+width &&
mouseY >= y && mouseY <= y+height) {
return true;
} else {
return false;
}
}
boolean overOpen(int x, int y, int diameter) {
float disX = x - mouseX;
float disY = y - mouseY;
if (sqrt(sq(disX) + sq(disY)) < diameter/2 ) {
return true;
} else {
return false;
}
}
boolean overClose(int x, int y, int diameter) {
float disX = x - mouseX;
float disY = y - mouseY;
if (sqrt(sq(disX) + sq(disY)) < diameter/2 ) {
return true;
} else {
return false;
}
}
boolean overHalf(int x, int y, int diameter) {
float disX = x - mouseX;
float disY = y - mouseY;
if (sqrt(sq(disX) + sq(disY)) < diameter/2 ) {
return true;
} else {
return false;
}
}