-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFreeMotion.ino
More file actions
213 lines (181 loc) · 5.25 KB
/
FreeMotion.ino
File metadata and controls
213 lines (181 loc) · 5.25 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
//Encoder Based Movements
const int eKd = 15; //8
const int eKi = 30;
const int integralLimit = 60;
const int stepSize = 1;
const int MAX_SPEED = 255;
void brake(int speed = MAX_SPEED, String dir = "FWD");
void rotate(int angle = 0, int speed = MAX_SPEED);
void stopMotors (){
motor.speed(0, 0);
motor.speed(1, 0);
}
void driveStraight(unsigned long distance, int speed){
int prevControl = 0;
int control= 0;
int devCount = 0;
int integralControl = 0;
resetRotations();
while(left_rotations < distance || right_rotations < distance) {
LCD.clear(); LCD.home() ;
LCD.setCursor(0, 0); LCD.print(left_rotations);
LCD.setCursor(7, 0); LCD.print(speed-control);
LCD.setCursor(0, 1); LCD.print(right_rotations);
LCD.setCursor(7, 1); LCD.print(speed+control);
control = 0;
if (left_rotations > right_rotations + stepSize) {
control = eKi;
// if (abs(control) >= abs(prevControl)) {integralControl++;}
} else if (left_rotations < right_rotations - stepSize) {
control = -eKi;
// if(abs(control) >= abs(prevControl)) {integralControl--;}
}
//
// if(abs(integralControl) >= integralLimit) {integralControl = integralLimit * integralControl/abs(integralControl);}
//
// if (control == prevControl){devCount = 1;}
// else {devCount++;}
//
////posterity, incorrect config, donot delete
//// motor.speed(0, speed - control);
//// motor.speed(1, speed + control);
control += devCount * eKd;
moveRightMotor(speed + control); // right motor
moveLeftMotor(speed - control); // left motor
prevControl = control;
}
stopMotors();
}
void reverse(unsigned long distance, int speed){
int prevControl = 0;
int control= 0;
int devCount = 0;
int integralControl = 0;
resetRotations();
while(left_rotations < distance || right_rotations < distance) {
LCD.clear(); LCD.home() ;
LCD.setCursor(0, 0); LCD.print(left_rotations);
LCD.setCursor(7, 0); LCD.print(speed-control);
LCD.setCursor(0, 1); LCD.print(right_rotations);
LCD.setCursor(7, 1); LCD.print(speed+control);
control = 0;
if (left_rotations > right_rotations + stepSize) {
control = -eKi;
// if (abs(control) >= abs(prevControl)) {integralControl++;}
} else if (left_rotations < right_rotations - stepSize) {
control = eKi;
// if(abs(control) >= abs(prevControl)) {integralControl--;}
}
//
// if(abs(integralControl) >= integralLimit) {integralControl = integralLimit * integralControl/abs(integralControl);}
//
// if (control == prevControl){devCount = 1;}
// else {devCount++;}
//
////posterity, incorrect config, donot delete
//// motor.speed(0, speed - control);
//// motor.speed(1, speed + control);
control += devCount * eKd;
moveRightMotor(-speed + control); // right motor
moveLeftMotor(-speed - control); // left motor
prevControl = control;
}
stopMotors();
}
//Braking for constant time, write REV if reversing, else leave void
//specify speed unless maxSpeed is desired
void brake(int speed, String dir){
if (dir.equals("FWD")){
moveRightMotor(-speed);
moveLeftMotor(-speed);
delay(10);
}
else if (dir.equals("REV")){
moveRightMotor(speed);
moveLeftMotor(speed);
delay(10);
}
stopMotors();
}
//left wheel = 0, right wheel = 1
//+ angle is CW
void rotate(int angle, int speed){
resetRotations();
stopMotors();
if (angle == 0) return;
int revCountMax = 0;
if (angle > 0) {
revCountMax = (float)angle/2.65;
LCD.clear(); LCD.home();
LCD.print(revCountMax);
while(abs(left_rotations) <= revCountMax || abs(right_rotations) <= revCountMax){
moveRightMotor(-speed);
moveLeftMotor(speed);
}
moveRightMotor(MAX_SPEED);
moveLeftMotor(-MAX_SPEED);
delay(20);
}
if (angle < 0) {
revCountMax = (float)angle/3.05;
revCountMax = abs(revCountMax);
LCD.clear(); LCD.home();
LCD.print(revCountMax);
while(abs(left_rotations) <= revCountMax || abs(right_rotations) <= revCountMax){
moveRightMotor(speed);
moveLeftMotor(-speed);
Serial.println(right_rotations);
Serial.print(left_rotations);
}
moveRightMotor(-MAX_SPEED);
moveLeftMotor(MAX_SPEED);
delay(20);
}
stopMotors();
}
//resets encoder counts
void resetRotations(){
left_rotations = 0;
right_rotations = 0;
}
//instant motor speed change
void moveRightMotor(int speed){
motor.speed(0, speed);
}
void moveLeftMotor(int speed){
motor.speed(1, speed);
}
//gradual motor speed change, minimizes slippage
//use for high accuracy movements
void moveRightMotorRamp(int speed){
if(speed == 0) {return;}
if(speed > 0){
for(int currSpeed = 0; currSpeed <= speed; currSpeed++){
motor.speed(0, speed);
delay(2);
}
}
if(speed < 0){
for(int currSpeed = 0; currSpeed >= speed; currSpeed--){
motor.speed(0, speed);
delay(2);
}
}
motor.speed(0, speed);
}
void moveLeftMotorRamp(int speed){
if(speed == 0) {return;}
if(speed > 0){
for(int currSpeed = 0; currSpeed <= speed; currSpeed++){
motor.speed(1, speed);
delay(1);
}
}
if(speed < 0){
for(int currSpeed = 0; currSpeed >= speed; currSpeed--){
motor.speed(1, speed);
delay(1);
}
}
motor.speed(0, speed);
}