-
Notifications
You must be signed in to change notification settings - Fork 0
/
derni_re_piste.ino
424 lines (374 loc) · 9.62 KB
/
derni_re_piste.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
418
419
420
421
422
423
424
#include <QTRSensors.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x3F, 16, 2);
QTRSensors qtr;
const uint8_t SensorCount = 8;
uint16_t sensorValues[SensorCount];
float Kp = 0.06;
float Ki = 0.0008;
float Kd = 0.8;
int P;
int I;
int D;
int lastError = 0;
boolean onoff = false;
uint8_t vitesseCalibrage = 40;
uint8_t vitesseTurn = 80;
const double rapport = 11 / 10;
const uint8_t maxspeeda = 90 * rapport;
const uint8_t maxspeedb = 90;
const uint8_t basespeeda = 60 * rapport;
const uint8_t basespeedb = 60;
#define aphase 13 // partie gauche
#define aenbl 11
#define freinMD 8
#define bphase 12 // partie droite
#define benbl 3
#define freinMG 9
const int ledMauvais = 44;
const int ledBon = 42;
const int ledTresBon = 45;
const int ledExellant = 43;
const int ledcalibrage = 10;
const int capteurGauche = 40;
const int capteurDroit = 41;
const int buttoncalibrate = 33;
const int buttonstart = 32;
const int buttonresetcompteur = 30;
const int nombreInter = 1;
int variableGauche = 0;
int variableDroite = 0;
int variableGaucheI = 0;
int variableDroiteI = 0;
int compteur = 0;
int virageGauche = 1;
int virageDroite = 2;
int virageGauche2 = 100;
int virageDroite2 = 13;
int virageGauche3 = 100;
int virageDroite3 = 22;
/*
int virageGaucheE = 0;
int virageDroiteE = 1;
*/
int sens;
void setup() {
qtr.setTypeRC();
qtr.setSensorPins((const uint8_t[]) {
46, 47, 48, 49, 50, 51, 52, 53
}, SensorCount);
qtr.setEmitterPin(7);//LEDON PIN
pinMode(capteurGauche, INPUT);
pinMode(capteurDroit, INPUT);
pinMode(aphase, OUTPUT);
pinMode(aenbl, OUTPUT);
pinMode(bphase, OUTPUT);
pinMode(benbl, OUTPUT);
pinMode(ledMauvais, OUTPUT);
pinMode(ledBon, OUTPUT);
pinMode(ledTresBon, OUTPUT);
pinMode(ledExellant, OUTPUT);
pinMode(ledcalibrage, OUTPUT);
pinMode(buttoncalibrate, INPUT_PULLUP);
pinMode(buttonstart, INPUT_PULLUP);
lcd.init();
lcd.begin(16, 2);
delay(500);
pinMode(5, OUTPUT);
boolean Ok = false;
while (Ok == false) {
if (digitalRead(buttoncalibrate) == LOW) {
digitalWrite(ledcalibrage, HIGH);
calibration();
Ok = true;
}
}
digitalWrite(ledcalibrage, LOW);
digitalWrite(ledMauvais, LOW);
digitalWrite(ledExellant, LOW);
forward_brake(0, 0);
}
//bonne chance pour capter :)
void loop() {
if (digitalRead(buttonstart) == LOW) {
onoff = ! onoff;
if (onoff = true) {
delay(1000);
}
else {
delay(50);
}
}
if (digitalRead(buttonresetcompteur) == LOW) {
compteur = 0;
variableGauche = 0;
variableDroite = 0;
digitalWrite(ledMauvais, LOW);
digitalWrite(ledExellant, LOW);
}
if (onoff == true) {
if (digitalRead(capteurGauche) == true) {
if (variableGauche == virageGauche) {
tournerGaucheT();
}
else {
sens = 3500;
}
if (variableGaucheI == 0) {
variableGauche++;
variableGaucheI++;
compteur++;
}
}
else if (digitalRead(capteurDroit) == true) {
if (variableDroite == virageDroite){
avancerMoteurDroit(0);
avancerMoteurGauche(0);
delay(500);
tournerDroiteE();
variableGauche = 10;
variableDroite = 10;
}
if (variableDroite == virageDroite2){
tournerDroiteE();
avancerMoteurDroit(60);
avancerMoteurGauche(0);
delay(600);
variableGauche = 20;
variableDroite = 20;
}
if (variableDroite == virageDroite3){
avancerMoteurDroit(0);
avancerMoteurGauche(0);
delay(500);
tournerDroiteE();
}
else {
sens = 3500;
}
if (variableDroiteI == 0) {
variableDroite++;
variableDroiteI++;
compteur++;
}
}
else {
sens = 3500;
}
PID_control(sens);
if (digitalRead(capteurGauche) == false && digitalRead(capteurDroit) == false) {
variableGaucheI = 0;
variableDroiteI = 0;
compteurEcran(variableDroite, variableGauche);
}
}
else {
forward_brake(0, 0);
}
}
//Fonction pour avancer
void forward_brake(int posa, int posb) {
digitalWrite(aphase, LOW);
digitalWrite(bphase, LOW);
analogWrite(aenbl, posa);
analogWrite(benbl, posb);
}
//Calibration automatique qui part du milieu
void calibration() {
demiCercle(vitesseCalibrage, 1);
for (uint16_t i = 0; i < 400; i++)
{
qtr.calibrate();
if (digitalRead(capteurGauche) == true) {
demiCercle(vitesseCalibrage, 1);
digitalWrite(ledExellant, HIGH);
}
else if (digitalRead(capteurDroit) == true) {
demiCercle(vitesseCalibrage, 0);
digitalWrite(ledMauvais, HIGH);
}
else {
digitalWrite(ledExellant, LOW);
digitalWrite(ledMauvais, LOW);
}
}
}
//fonction de rotation simple sur l'axe Y(vertical).
//les arguments sont la vitesse de déplacement et le sens (0 pour gauche et 1 pour droite).
//Il est possible que les sens soient inversés.
void demiCercle(int vitesse, bool sens) {
if (sens == 0) {
digitalWrite(aphase, HIGH);
digitalWrite(bphase, LOW);
analogWrite(aenbl, vitesse * rapport);
analogWrite(benbl, vitesse);
}
if (sens == 1) {
digitalWrite(aphase, LOW);
digitalWrite(bphase, HIGH);
analogWrite(aenbl, vitesse * rapport);
analogWrite(benbl, vitesse);
}
}
void compteurEcran(int x, int y) {
lcd.backlight();
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("D:");
lcd.setCursor(4, 0);
lcd.print(x);
lcd.setCursor(0, 1);
lcd.print("G:");
lcd.setCursor(4, 1);
lcd.print(y);
}
void PID_control(int consigne) {
uint16_t position = qtr.readLineBlack(sensorValues);
int error = consigne - position;
//testPID(position);
P = error;
I = I + error;
D = error - lastError;
lastError = error;
int motorspeed = P * Kp + I * Ki + D * Kd;
int motorspeeda = basespeeda + motorspeed;
int motorspeedb = basespeedb - motorspeed;
if (motorspeeda > maxspeeda) {
motorspeeda = maxspeeda;
}
if (motorspeedb > maxspeedb) {
motorspeedb = maxspeedb;
}
if (motorspeeda < 0) {
motorspeeda = 0;
}
if (motorspeedb < 0) {
motorspeedb = 0;
}
forward_brake(motorspeeda, motorspeedb);
}
void tournerGaucheT() {
digitalWrite(ledBon, HIGH);
if (digitalRead(capteurGauche) == true || digitalRead(capteurDroit) == true) {
avancerMoteurDroit(60);
avancerMoteurGauche(60);
}
while (digitalRead(capteurDroit) == false) {
avancerMoteurDroit(60);
reculerMoteurGauche(40);
}
if (digitalRead(capteurGauche) == false) {
reculerMoteurDroit(40);
avancerMoteurGauche(60);
delay (300);
}
digitalWrite(ledBon, LOW);
}
void tournerDroiteT() {
digitalWrite(ledTresBon, HIGH);
if (digitalRead(capteurGauche) == true || digitalRead(capteurDroit) == true) {
avancerMoteurDroit(60);
avancerMoteurGauche(60);
}
while (digitalRead(capteurGauche) == false) {
avancerMoteurGauche(60);
reculerMoteurDroit(40);
}
if (digitalRead(capteurDroit) == false) {
reculerMoteurGauche(40);
avancerMoteurDroit(60);
delay (300);
}
digitalWrite(ledTresBon, LOW);
}
void tournerDroiteE(){
digitalWrite(ledTresBon, HIGH);
forward_brake(0,0);
if(digitalRead(capteurDroit) == false){
while(digitalRead(capteurDroit) == false){
reculerMoteurDroit(60);
avancerMoteurGauche(0);
}
}
forward_brake(0,0);
while(digitalRead(capteurGauche) == false){
avancerMoteurDroit(0);
avancerMoteurGauche(60);
}
forward_brake(0,0);
if(digitalRead(capteurDroit) == false){
while(digitalRead(capteurDroit) == false){
reculerMoteurDroit(60);
avancerMoteurGauche(0);
}
}
forward_brake(0,0);
while(digitalRead(capteurDroit) == true){
reculerMoteurDroit(60);
avancerMoteurGauche(0);
}
forward_brake(0,0);
if(digitalRead(capteurGauche) == true){
while(digitalRead(capteurGauche) == true){
avancerMoteurDroit(0);
avancerMoteurGauche(60);
}
}
digitalWrite(ledTresBon, LOW);
}
void avancerMoteurGauche(int vitesse) {
digitalWrite(bphase, LOW);
analogWrite(benbl, vitesse);
}
void avancerMoteurDroit(int vitesse) {
digitalWrite(aphase, LOW);
analogWrite(aenbl, vitesse);
}
void reculerMoteurGauche(int vitesse) {
digitalWrite(bphase, HIGH);
analogWrite(benbl, vitesse);
}
void reculerMoteurDroit(int vitesse) {
digitalWrite(aphase, HIGH);
analogWrite(aenbl, vitesse);
}
void tourner(int vitesse, bool sens) {
if (sens == 0) {
digitalWrite(aphase, HIGH);
digitalWrite(bphase, LOW);
analogWrite(aenbl, vitesse / 2);
analogWrite(benbl, vitesse);
}
if (sens == 1) {
digitalWrite(aphase, LOW);
digitalWrite(bphase, HIGH);
analogWrite(aenbl, vitesse * rapport);
analogWrite(benbl, vitesse * rapport / 2);
}
}
/*void testPID(uint16_t pos) {
if (pos == 3500){
digitalWrite(ledExellant, HIGH);
}
else {
digitalWrite(ledExellant, LOW);
}
if (pos >= 3000 && pos <= 4000){
digitalWrite(ledTresBon, HIGH);
}
else {
digitalWrite(ledTresBon, LOW);
}
if (pos >= 2500 && pos <= 4500){
digitalWrite(ledBon, HIGH);
}
else {
digitalWrite(ledBon, LOW);
}
if (pos >= 2000 && pos <= 5000){
digitalWrite(ledMauvais, HIGH);
}
else {
digitalWrite(ledMauvais, LOW);
}
}*/