-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChariotFDL.ino
225 lines (178 loc) · 5.12 KB
/
ChariotFDL.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
#include <Servo.h> // On utilise des servo
#include <NewPing.h> // librairie à installer, permet de simplifier les appels au capteur ultrasons
Servo servo1; // servo qui gère l'axe vertical
Servo servo2; //servo qui gère l'axe horizontal
int const PIN1_MOTEUR1 = 8; //pin de commande moteur 1
int const PIN2_MOTEUR1 = 7; // pin de commande moteur 1
int const PWN_MOTEUR_1 = 6; // pin PWM moteur 1
int const PIN1_MOTEUR2 = 10; // pin de commande moteur 2
int const PIN2_MOTEUR2 = 9; // pin de commande moteur 2
int const PWN_MOTEUR_2 = 11; // pin PWM moteur 2
int const PIN_SERVO_1 = 12; // pin servo haut/bas
int const PIN_SERVO_2 = 13; // pin servo gauche/droite
int const PIN_LED = 2; // pin Lampe
#define TRIGGER_PIN 4
#define ECHO_PIN 5
#define MAX_DISTANCE 60 // toute mesure au dela de cette distance (en cm) est consideree comme nulle
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE);
void setup() {
delay(2000);
Serial.begin(9600); //initialise la communication série
pinMode(PIN1_MOTEUR1, OUTPUT);
pinMode(PIN2_MOTEUR1, OUTPUT);
pinMode(PWN_MOTEUR_1, OUTPUT);
pinMode(PIN1_MOTEUR2, OUTPUT);
pinMode(PIN2_MOTEUR2, OUTPUT);
pinMode(PWN_MOTEUR_2, OUTPUT);
pinMode(PIN_LED, OUTPUT);
servo1.attach(PIN_SERVO_1); //ratachement à la sortie 12. Ce servo va de 0 à 45°(de bas en haut)
servo2.attach(PIN_SERVO_2); //ratachement à la sortie 13. Ce servo va de 0 à 360° (gauche à droite)
}
void loop() {
int nbPoteau = 1;
actionMoteur(1, 1, 80);
actionMoteur(2, 1, 80);
while (nbPoteau <= 7) {
unsigned int d = sonar.ping_cm();
Serial.println("d = " + String(d));
if (d > 10) {
delay(250);
continue;
} else {
switch (nbPoteau) {
case 1 :
Serial.println("Poteau 1");
actionMoteur(1, 1, 80);
actionMoteur(2, 1, 80);
case 2 :
Serial.println("Poteau 2");
actionMoteur(1, 1, 180);
actionMoteur(2, 1, 180);
case 3 :
Serial.println("Poteau 3");
actionMoteur(1, 1, 80);
actionMoteur(2, 1, 80);
case 4 :
Serial.println("Poteau 4");
actionMoteur(1, 1, 180);
actionMoteur(2, 1, 180);
case 5 :
Serial.print("Poteau 5");
actionMoteur(1, 1, 80);
actionMoteur(2, 1, 80);
case 6 :
Serial.println("Poteau 6");
actionMoteur(1, 1, 180);
actionMoteur(2, 1, 180);
delay(2000);
actionMoteur(1, 1, 50);
actionMoteur(2, 1, 50);
case 7 :
Serial.println("Poteau 7");
actionMoteur(1, 1, 80);
actionMoteur(2, 1, 80);
delay(3000);
}
nbPoteau ++;
}
}
Serial.println("yey");
}
//partie Théophile (pan/tilt)
//fonction de base arret.
void attente(int temps)
{
servo1.write(0);
servo2.write(0);
delay(temps);
}
void mouv_servo_1_2(int X1, int X2, int Y1, int Y2, int tps)
{ float pas;
if (abs(X1 - X2) > abs(Y1 - Y2)) {
pas = abs(X1 - X2);
} else {
pas = abs(Y1 - Y2);
}
float i = X1;
float j = Y1;
int temps = tps / pas;
if (X1 <= X2 && Y1 <= Y2) {
while (i <= X2 && j <= Y2) {
servo1.write((int)i);
servo2.write((int)j);
i += abs(X2 - X1) / pas;
j += abs(Y2 - Y1) / pas;
delay(temps);
}
}
if (X1 > X2 && Y1 > Y2) {
while (i >= X2 && j >= Y2) {
servo1.write((int)i);
servo2.write((int)j);
i -= abs(X2 - X1) / pas;
j -= abs(Y2 - Y1) / pas;
delay(temps);
}
}
if (X1 <= X2 && Y1 >= Y2) {
while (i <= X2 && j >= Y2) {
servo1.write((int)i);
servo2.write((int)j);
i += abs(X2 - X1) / pas;
j -= abs(Y2 - Y1) / pas;
delay(temps);
}
}
if (X1 >= X2 && Y1 <= Y2) {
while (i >= X2 && j <= Y2) {
servo1.write((int)i);
servo2.write((int)j);
i -= abs(X2 - X1) / pas;
j += abs(Y2 - Y1) / pas;
delay(temps);
}
}
}
//partie Basile (moteur)
void actionMoteur(int moteur, int sens, int pwr) {
int pin1, etat1, pin2, etat2, pinP, puissance; //variable de la fonction
//test numéro du moteur
if (moteur == 1) {
pin1 = PIN1_MOTEUR1;
pin2 = PIN2_MOTEUR1;
pinP = PWN_MOTEUR_1;
}
else {
pin1 = PIN1_MOTEUR2;
pin2 = PIN2_MOTEUR2;
pinP = PWN_MOTEUR_2;
}
//test sens du moteur 1,-1 (sens contraire) ou tout autre valeur (stoppe le moteur)
if (sens == 1) {
etat1 = 1;
etat2 = 0;
}
else if (sens == -1) {
etat1 = 0;
etat2 = 1;
}
else {
etat1 = 0;
etat2 = 0;
}
analogWrite(pinP, pwr);
digitalWrite(pin1, etat1);
digitalWrite(pin2, etat2);
//affichage sur le moniteur série (facultatif)
Serial.print("Moteur : ");
Serial.print(moteur);
if (sens == -1 || sens == 1) {
Serial.print(" sens : ");
Serial.print(sens);
}
else {
Serial.print(" ! stop ! ");
}
Serial.print(" puissance : ");
Serial.println(pwr);
}