-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathS2E13_sweep_function.ino
More file actions
244 lines (190 loc) · 4.55 KB
/
Copy pathS2E13_sweep_function.ino
File metadata and controls
244 lines (190 loc) · 4.55 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
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
#include <Servo.h>
/*
Practice #1: Create sweepMinus + sweepPlus functions for base
Practice #2: Create sweep function for base
Practice #3: Create sweep function where you can input any motor
*/
Servo baseMotor;
Servo extendMotor;
Servo liftMotor;
Servo clawMotor;
//- soft limits for motors
int baseMotorMin = 0;
int baseMotorMax = 180;
int baseMotorMid = ((baseMotorMax - baseMotorMin) / 2) + baseMotorMin;
int extendMotorMax = 150;
int extendMotorMin = 50;
int extendMotorMid = ((extendMotorMax - extendMotorMin) / 2) + extendMotorMin;
int liftMotorMax = 180;
int liftMotorMin = 90;
int liftMotorMid = ((liftMotorMax - liftMotorMin) / 2) + liftMotorMin;
int clawClose = 180;
int clawOpen = 90;
//- speed
int speed = 10;
void setup() {
baseMotor.attach(9);
extendMotor.attach(10);
liftMotor.attach(11);
clawMotor.attach(6);
pinMode(2,INPUT_PULLUP);
Serial.begin(9600);
//homePosition();
delay(1000);
}
void routine() {
baseMotor.write(baseMotorMin);
delay(1000);
baseMotor.write(baseMotorMax);
delay(1000);
baseMotor.write(baseMotorMid);
delay(1000);
extendMotor.write(extendMotorMin);
delay(1000);
extendMotor.write(extendMotorMax);
delay(1000);
liftMotor.write(liftMotorMin);
delay(1000);
liftMotor.write(liftMotorMax);
delay(1000);
}
void slowRoutine() {
baseMotor.write(baseMotorMin);
checkEmergencyStop();
//- moves base motor CCW
for (int i = baseMotorMin; i<baseMotorMax; i++) {
baseMotor.write(i);
checkEmergencyStop();
Serial.println(i);
delay(speed);
}
//- moves base motor CW
for (int i = baseMotorMax; i>baseMotorMin; i--) {
baseMotor.write(i);
checkEmergencyStop();
Serial.println(i);
delay(speed);
}
//- extend motor code
extendMotor.write(extendMotorMin);
checkEmergencyStop();
//- moves extend motor out
for (int i = extendMotorMin; i<extendMotorMax; i++) {
extendMotor.write(i);
checkEmergencyStop();
Serial.println(i);
delay(speed);
}
//- moves extend motor in
for (int i = extendMotorMax; i>extendMotorMin; i--) {
extendMotor.write(i);
checkEmergencyStop();
Serial.println(i);
delay(speed);
}
//- lift motor code
liftMotor.write(liftMotorMin);
checkEmergencyStop();
//- moves lift motor out
for (int i = liftMotorMin; i<liftMotorMax; i++) {
liftMotor.write(i);
checkEmergencyStop();
Serial.println(i);
delay(speed);
}
//- moves lift motor in
for (int i = liftMotorMax; i>liftMotorMin; i--) {
liftMotor.write(i);
checkEmergencyStop();
Serial.println(i);
delay(speed);
}
}
void homePosition() {
baseMotor.write(baseMotorMid);
extendMotor.write(extendMotorMid);
liftMotor.write(liftMotorMid);
checkEmergencyStop();
}
void checkEmergencyStop() {
if (digitalRead(2)==LOW) {
//- after the button is pressed, just wait here for 3 seconds
//- then continue
delay(3000);
}
}
void sweepPlus(int min, int max, Servo motor) {
for (int i=min;i<max;i++) {
motor.write(i);
delay(30);
}
}
void sweepMinus(int max, int min, Servo motor) {
for (int i=max;i>min;i--) {
motor.write(i);
delay(30);
}
}
void sweep(int initial, int end, Servo motor) {
//-figure out is this a minus or plus situation?
if (initial < end) {
//- sweep plus
sweepPlus(initial,end,motor);
}
if (initial > end) {
//- sweep minus
sweepMinus(initial,end,motor);
}
}
void loop() {
/* sweepMinus(90,0);
sweepPlus(0,180);
sweepMinus(180,90);
*/
sweep(90,0,baseMotor);
sweep(0,180,baseMotor);
sweep(180,90,baseMotor);
sweep(90,180,clawMotor);
sweep(180,90,clawMotor);
sweep(90,180,clawMotor);
while (1) {
//- get stuck here forever
}
//- initial position
/* baseMotor.write(baseMotorMax);
delay(1000);
extendMotor.write(extendMotorMin);
delay(1000);
liftMotor.write(liftMotorMin);
delay(1000);
clawMotor.write(clawOpen);
//- turn to grab object
baseMotor.write(baseMotorMid);
delay(1000);
//- lift arm to get to position
liftMotor.write(liftMotorMin+50);
delay(1000);
//- extend the arm
extendMotor.write(extendMotorMin+90);
delay(1000);
//-grab the object
clawMotor.write(clawClose);
delay(1000);
extendMotor.write(extendMotorMin);
delay(1000);
//-move object to north direction
baseMotor.write(baseMotorMin);
delay(1000);
//-let go of the object
clawMotor.write(clawOpen);
delay(1000);
*/
while (1) {
//-do nothing
}
/*clawMotor.write(clawOpen);
delay(1000);
clawMotor.write(clawClose);
delay(1000);
*/
}