-
Notifications
You must be signed in to change notification settings - Fork 0
/
PID_compteur_inclus.ino
327 lines (301 loc) · 9.27 KB
/
PID_compteur_inclus.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
/*
* File name: PID_compteur_inclus
*
* Hardware list : - Arduino Mega
* - QTR-8RC
*
* Description: Système de contrôle PID qui permet au robot de suivre une ligne noire sur un fond blanc.
*
* Author: Noukypop01 / Not007btw
*/
#include <QTRSensors.h> //Assurez-vous d'installer la library
/*************************************************************************
* Initialisation de l'objet Sensor Array
*************************************************************************/
QTRSensors qtr;
const uint8_t SensorCount = 8;
uint16_t sensorValues[SensorCount];
/*************************************************************************
* Variables de contrôle PID
*************************************************************************/
float Kp = 0; // lié à la proportionelle;
// changé la valeur en essais-erreur (ex: 0.07).
float Ki = 0; // lié à l'intégral;
// changé la valeur en essais-erreur (ex: 0.0008).
float Kd = 0; // lié au dérivé;
// changé la valeur en essais-erreur (ex: 0.6).
int P;
int I;
int D;
/*************************************************************************
* Variables global
*************************************************************************/
int lastError = 0;
boolean onoff = false;
/*************************************************************************
* Variables vitesse moteur (entre 0 - arrêt ; et 255 - vitesse maximum)
*************************************************************************/
const uint8_t maxspeeda = 150;
const uint8_t maxspeedb = 150;
const uint8_t basespeeda = 100;
const uint8_t basespeedb = 100;
// /*************************************************************************
// * DRV8835 GPIO pins declaration
// *************************************************************************/
// int mode = 8;
// int aphase = 9;
// int aenbl = 6;
// int bphase = 5;
// int benbl = 3;
// int ledMauvais = 53;
// int ledBon = 55;
// int ledTresBon = 54;
// int ledExellant = 81;
/*************************************************************************
* Buttons pins declaration
*************************************************************************/
int buttoncalibrate = 17; // ou pin A3
int buttonstart = 2;
int buttonResetCompteur = 26;
const int nbrVirage = 0;
bool tableauTrajectoire[nbrVirage] = {};
int compteur = 0;
int compteurInf = 0;
double sens;
/*************************************************************************
* Function Name: setup
**************************************************************************
* Summary :
* C'est une fonction au démarrage de la carte Arduino. Elle active les
* pins pour les capteurs et les moteurs. Ensuite l'utilisateur doit bouger
* le robot au dessus de la ligne pendant 10s pour le calibrer
*
* Parameters:
* none
*
* Returns:
* none
*************************************************************************/
void setup()
{
qtr.setTypeRC();
qtr.setSensorPins((const uint8_t[]){10, 11, 12, 14, 15, 16, 18, 19}, SensorCount);
qtr.setEmitterPin(7); // LEDON PIN
pinMode(mode, OUTPUT);
pinMode(aphase, OUTPUT);
pinMode(aenbl, OUTPUT);
pinMode(bphase, OUTPUT);
pinMode(benbl, OUTPUT);
pinMode(ledMauvais, OUTPUT);
pinMode(ledBon, OUTPUT);
pinMode(ledTresBon, OUTPUT);
pinMode(ledExellant, OUTPUT);
digitalWrite(mode, HIGH); // one of the two control interfaces
//(simplified drive/brake operation)
delay(500);
pinMode(LED_BUILTIN, OUTPUT);
boolean Ok = false;
while (Ok == false)
{ // the main function won't start until the robot is calibrated
if (digitalRead(buttoncalibrate) == HIGH)
{
calibration(); // calibrate the robot for 10 seconds
Ok = true;
}
}
forward_brake(0, 0); // stop the motors
}
/*************************************************************************
* Function Name: calibration
**************************************************************************
* Summary:
* C'est la fonction de calibration pour le capteur QTR-8RC. Le nom d'appel
* de la fonction est "qtr.calibrate()" implanter via la library. Pendant
* approximativement 10s chacun des 8 capteurs va se calibrer en 'lisant' la
* piste
*
* Parameters:
* none
*
* Returns:
* none
*************************************************************************/
void calibration()
{
digitalWrite(LED_BUILTIN, HIGH);
for (uint16_t i = 0; i < 400; i++)
{
qtr.calibrate();
}
digitalWrite(LED_BUILTIN, LOW);
}
/*************************************************************************
* Function Name: loop
**************************************************************************
* Summary:
* C'est la fonction principal. Quand le boutton start est pressé, le robot
* va basculer entre suivre la ligne et s'arrêter. Quand il suit la ligne
* la fonction appel le contôle PID
*
* Parameters:
* none
*
* Returns:
* none
*************************************************************************/
void loop()
{
if (digitalRead(buttonstart) == HIGH)
{
onoff = !onoff;
if (onoff = true)
{
delay(1000); // un delay avant que le robot démarre
}
else
{
delay(50);
}
}
if (digitalRead(buttonResetCompteur) == HIGH)
{
compteur = 0;
}
if (onoff == true)
{
sens = 3500;
if (sensorValues[2] == true && sensorValues[5] == true)
{
if (tableauTrajectoire[compteur] == 0)
{
sens = 500;
}
if (tableauTrajectoire[compteur] == 1)
{
sens = 2000;
}
if (compteurInf == 0)
{
compteur++;
}
compteurInf++;
// PID_control(sens);
if (sensorValues[2] == false && sensorValues[5] == false)
{
compteurInf = 0;
}
}
PID_control(sens);
}
else
{
forward_brake(0, 0); // stop the motors
}
}
// /*************************************************************************
// * Function Name: forward_brake
// **************************************************************************
// * Summary:
// * This is the control interface function of the motor driver. As shown in
// * the Pololu's documentation of the DRV8835 motor driver, when the MODE is
// * equal to 1 (the pin is set to output HIGH), the robot will go forward at
// * the given speed specified by the parameters. The phase pins control the
// * direction of the spin, and the enbl pins control the speed of the motor.
// *
// * A warning though, depending on the wiring, you might need to change the
// * aphase and bphase from LOW to HIGH, in order for the robot to spin forward.
// *
// * Parameters:
// * int posa: int value from 0 to 255; controls the speed of the motor A.
// * int posb: int value from 0 to 255; controls the speed of the motor B.
// *
// * Returns:
// * none
// *************************************************************************/
// void forward_brake(int posa, int posb)
// {
// set the appropriate values for aphase and bphase so that the robot goes straight
// digitalWrite(aphase, LOW);
// digitalWrite(bphase, LOW);
// analogWrite(aenbl, posa);
// analogWrite(benbl, posb);
// }
/*************************************************************************
* Function Name: PID_control
**************************************************************************
* Summary:
* C'est la fonction de contrôle PID. Le PID utilise la proportionnel, le dérivé et l'intégral
* pour un contrôle optimale. La correction est appliqué sur la vitesse des moteurs.
*
* Parameters:
* none
*
* Returns:
* none
*************************************************************************/
void PID_control(double consigne)
{
uint16_t position = qtr.readLineBlack(sensorValues); // lit la position actuel
int error = consigne - position; // 3500 est la position idéal (le centre du robot)
testPID(position);
P = error;
I = I + error;
D = error - lastError;
lastError = error;
int motorspeed = P * Kp + I * Ki + D * Kd; // calcul la correction nécessaire à appliquer sur
// la vitesse des moteurs
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 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);
}
}