-
Notifications
You must be signed in to change notification settings - Fork 0
/
LCE_crawler.ino
124 lines (91 loc) · 2.71 KB
/
LCE_crawler.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
// Michael Vinciguerra
// Research
// 5/5/22
// LCE-Crawler
//*************************************************************
#define PHOTO A1
const int HEATER1 = 2;
const int HEATER2 = 5;
const int HEATER3 = 12;
const int impulse[] = {5000, 5000, 5000}; // turn on the heater for 2 seconds at a time
const int seg_delay = 100; // seconds of delay in between each heater being triggered
const int threshold = 100; // the expected change to trigger a photoresistor
int power = 0; // controls whether the crawler receives heat or not
int valInit = 0; // initial reading for photoresistor
void setup() {
pinMode(PHOTO, INPUT);
pinMode(HEATER1, OUTPUT);
pinMode(HEATER2, OUTPUT);
pinMode(HEATER3, OUTPUT);
digitalWrite(HEATER1, LOW);
digitalWrite(HEATER2, LOW);
digitalWrite(HEATER3, LOW);
valInit = analogRead(PHOTO);
Serial.begin(9600); // for debugging purposes
}
void loop() {
// Get readings from photoresistors and check to see if
// the values have changed significantly
int photoVal = analogRead(PHOTO);
if(valInit - photoVal >= threshold) {
power = ~power;
}
if (power != 0) {
go();
}
}
// Move the crawler to the left
void go() {
Serial.println("Moving to the left...");
digitalWrite(HEATER1, HIGH);
Serial.println("Heater 1 Active");
for (int i = 0; i < 10; i++) {
delay(impulse[0]/10);
int photoVal = analogRead(PHOTO);
if(valInit - photoVal >= threshold) {
power = ~power;
digitalWrite(HEATER1, LOW);
Serial.println("TURNING OFF CRAWLER\n");
delay(2000);
return;
}
}
//delay(impulse[0]);
digitalWrite(HEATER1, LOW);
Serial.println("Heater 1 Inactive");
delay(seg_delay);
digitalWrite(HEATER2, HIGH);
Serial.println("Heater 2 Active");
for (int i = 0; i < 10; i++) {
delay(impulse[1]/10);
int photoVal = analogRead(PHOTO);
if(valInit - photoVal >= threshold) {
power = ~power;
digitalWrite(HEATER2, LOW);
Serial.println("TURNING OFF CRAWLER\n");
delay(2000);
return;
}
}
//delay(impulse[1]);
digitalWrite(HEATER2, LOW);
Serial.println("Heater 2 Inactive");
delay(seg_delay);
digitalWrite(HEATER3, HIGH);
Serial.println("Heater 3 Active");
for (int i = 0; i < 10; i++) {
delay(impulse[2]/10);
int photoVal = analogRead(PHOTO);
if(valInit - photoVal >= threshold) {
power = ~power;
digitalWrite(HEATER3, LOW);
Serial.println("TURNING OFF CRAWLER\n");
delay(2000);
return;
}
}
//delay(impulse[2]);
digitalWrite(HEATER3, LOW);
Serial.println("Heater 3 Inactive");
Serial.println();
}