-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinalAlpha.ino
417 lines (328 loc) · 12.1 KB
/
finalAlpha.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
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
#include "BluetoothSerial.h"
// #include <Wire.h>
// #include "Haptic_Driver.h"
//1123 freefontdemo
#include "SPI.h"
#include "TFT_eSPI.h"
#include "Free_Fonts.h" // Include the header file attached to this sketch
//hardware setup
TFT_eSPI tft = TFT_eSPI();
unsigned long drawTime = 0;
int xpos = 20;
int ypos = 10;
//end
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED)
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it
#endif
#if !defined(CONFIG_BT_SPP_ENABLED)
#error Serial Bluetooth not available or not enabled. It is only available for the ESP32 chip.
#endif
BluetoothSerial SerialBT;
// Haptic_Driver hapDrive;
// int event = 0;
int scene;
int sceneNo;
const int FLEX_PIN = 34; // Pin connected to voltage divider output
const int TAP_PIN = 32;
// GPIOs 34, 35, 36, 39 can only be used as inputs
// 5V and 47k resistor
const float VCC = 5;
const float R_DIV = 47500.0;
// Upload the code, then try to adjust these values to more
// accurately calculate bend degree.
const float STRAIGHT_RESISTANCE = 14500.0; // resistance when straight
const float BEND_RESISTANCE = 21000.0; // resistance at 90 deg
void setup(){
//TFT
tft.begin();
tft.setRotation(0);
tft.fillScreen(TFT_BLACK);
//PINS
pinMode(FLEX_PIN, INPUT);
pinMode(TAP_PIN, OUTPUT); //taptic
//SERIAL
// Wire.begin();
Serial.begin(115200);
// SerialBT.begin("sunnyAlpha"); //Bluetooth device name
Serial.println("The device started, now you can pair it with bluetooth!");
// Serial.setTimeout(200);
SerialBT.setTimeout(200);
// if( !hapDrive.begin())
// Serial.println("Could not communicate with Haptic Driver.");
// else
// Serial.println("Qwiic Haptic Driver DA7280 found!");
// if( !hapDrive.defaultMotor() )
// Serial.println("Could not set default settings.");
// Frequency tracking is done by the IC to ensure that the motor is hitting
// its resonant frequency. I found that restricting the PCB (squeezing)
// raises an error which stops operation because it can not reach resonance.
// I disable here to avoid this error.
// hapDrive.enableFreqTrack(false);
// Serial.println("Setting I2C Operation.");
// hapDrive.setOperationMode(DRO_MODE);
// Serial.println("Ready.");
// delay(1000);
}
void loop(){
//read flex data
int flexADC = analogRead(FLEX_PIN);
//calculate angle
float flexV = flexADC * VCC / 1023.0;
int flexR = R_DIV * (VCC / flexV);
int angle = map(flexR, STRAIGHT_RESISTANCE, BEND_RESISTANCE, 0, 180); // bend angle
//BT
// SerialBT.println(angle);
// scene = SerialBT.read();
Serial.println(angle);
scene = Serial.read();
// if(anglePlus < 215){
// display(glider);
// tap(200);
// }
switch(scene) {
//scene 1
case 'a': //door
door();
tap(400);
break;
case 'b'://pipe
pipe("Cable for power delivery");
tap(400);
break;
case 'c'://cubeL
cubeL("Battery Pack to provide initial power");
tap(400);
break;
case 'd'://cubeS
cubeS("Key to start up");
tap(400);
break;
//scene 2
case 'e': //glider
glider();
tap(400);
break;
case 'f': //pg
pg();
tap(400);
break;
case 'g': //pipe
pipe("Glider altitude modifier");
tap(400);
break;
case 'h': //cubeL
cubeL("Broken Energy Storage System to Recyle");
tap(400);
break;
case 'i': //cubeS
cubeS("New Energy Storage System");
tap(400);
break;
//scene 3
case 'j': //uam
uam();
tap(400);
break;
case 'k': //pv
pv();
tap(400);
break;
case 'l': //pipe
pipe("Fuel Pipe");
tap(400);
break;
case 'm': //cubeL
cubeL("Data Storage System");
tap(400);
break;
case 'n': //cubeS
cubeS("Triggers the fuel");
tap(400);
break;
//scene 4
case 'o': //pipe
pipe("Water Pipe - already installed");
tap(400);
break;
case 'p': //cubeL
cubeL("Data Storage System");
tap(400);
break;
case 'q': //cubeS
cubeS("DNA Bioengineering System - already installed");
tap(400);
break;
case 'r'://pump
pump();
tap(400);
break;
case 's'://reset
disReset();
break;
}
delay(150);
}
// Print the header for a display screen
void glider(){
tft.fillScreen(TFT_MAGENTA);
tft.setTextColor(TFT_WHITE);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Energy"); // Print the font name onto the TFT screen
tft.println(); // Move cursor down a line
tft.print("Glider"); // Print the font name onto the TFT screen
tft.setCursor(xpos, 140); // Set cursor near top left corner of screen
tft.setTextColor(TFT_LIGHTGREY);
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("MISSION"); // Print the font name onto the TFT screen
tft.setTextColor(TFT_WHITE);
tft.setFreeFont(FSB12); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Fly the glider to harvest energy"); // Print the font name onto the TFT screen
}
void pg(){
tft.fillScreen(TFT_BLUE);
tft.setTextColor(TFT_WHITE);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Power"); // Print the font name onto the TFT screen
tft.println(); // Move cursor down a line
tft.print("Generator"); // Print the font name onto the TFT screen
tft.setCursor(xpos, 140); // Set cursor near top left corner of screen
tft.setTextColor(TFT_LIGHTGREY);
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("MISSION"); // Print the font name onto the TFT screen
tft.setTextColor(TFT_WHITE);
tft.setFreeFont(FSB12); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Replace the used battery"); // Print the font name onto the TFT screen
}
void uam(){
tft.fillScreen(TFT_GREEN);
tft.setTextColor(TFT_BLACK);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Urban"); // Print the font name onto the TFT screen
tft.println(); // Move cursor down a line
tft.print("Air"); // Print the font name onto the TFT screen
tft.println(); // Move cursor down a line
tft.print("Mobility"); // Print the font name onto the TFT screen
tft.setCursor(xpos, 140); // Set cursor near top left corner of screen
tft.setTextColor(TFT_LIGHTGREY);
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("MISSION"); // Print the font name onto the TFT screen
tft.setTextColor(TFT_BLACK);
tft.setFreeFont(FSB12); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Fuel the UAM"); // Print the font name onto the TFT screen
}
void pv(){
tft.fillScreen(TFT_YELLOW);
tft.setTextColor(TFT_BLACK);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Photovoltaic");
tft.println(); // Move cursor down a line
tft.print("Power"); // Print the font name onto the TFT screen
tft.println(); // Move cursor down a line
tft.print("Generation"); // Print the font name onto the TFT screen
}
void door(){
tft.fillScreen(TFT_WHITE);
tft.setTextColor(TFT_BLACK);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB18); // Select Free Serif 9 point font
tft.println(); // Free fonts plot with the baseline (imaginary line the letter A would sit on)
tft.print("Door"); // Print the font name onto the TFT screen
tft.setCursor(xpos, 140); // Set cursor near top left corner of screen
tft.setTextColor(TFT_LIGHTGREY);
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("MISSION"); // Print the font name onto the TFT screen
tft.setFreeFont(FSB12); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Open the door"); // Print the font name onto the TFT screen
}
void pump() {
tft.fillScreen(TFT_LIGHTGREY);
// For comaptibility with Adafruit_GFX library the text background is not plotted when using the print class
// even if we specify it.
tft.setTextColor(TFT_BLACK);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of s
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("TURN the"); // Print the font name onto the TFT screen
tft.println(); // Move cursor down a line
tft.print("KNOB"); // Print the font name onto the TFT screen
tft.setFreeFont(FSB12); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("CLOCKWISE"); // Print the font name onto the TFT screen
}
void cubeL(const char *string){
tft.fillScreen(TFT_BLACK);
tft.setTextColor(TFT_LIGHTGREY);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println();
tft.print("NEEDED");
tft.setTextColor(TFT_GREEN);
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println();
tft.print(string);
tft.setCursor(xpos, 290-ypos);
tft.setFreeFont(FSB12); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Type: LARGE CUBE");
}
void cubeS(const char *string){
tft.fillScreen(TFT_BLACK);
tft.setTextColor(TFT_LIGHTGREY);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println();
tft.print("NEEDED");
tft.setTextColor(TFT_MAGENTA);
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println();
tft.print(string);
tft.setCursor(xpos, 290-ypos);
tft.setFreeFont(FSB12); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Type: SMALL CUBE");
}
void pipe(const char *string){
tft.fillScreen(TFT_BLACK);
tft.setTextColor(TFT_LIGHTGREY);
tft.setCursor(xpos, ypos); // Set cursor near top left corner of screen
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println();
tft.print("NEEDED");
tft.setTextColor(TFT_YELLOW);
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println();
tft.print(string);
tft.setCursor(xpos, 290-ypos);
tft.setFreeFont(FSB9); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Type: PIPE");
}
void disReset() {
tft.fillScreen(TFT_BLACK);
tft.setTextColor(TFT_WHITE);
tft.setCursor(xpos, 130); // Set cursor near top left corner of screen
tft.setFreeFont(FSB18); // Select Free Serif 12 point font
tft.println(); // Move cursor down a line
tft.print("Hello");
}
void tap(int time){
digitalWrite(TAP_PIN, HIGH);
delay(time);
digitalWrite(TAP_PIN, LOW);
}