-
Notifications
You must be signed in to change notification settings - Fork 0
/
TIPE_3005.ino
193 lines (167 loc) · 4.6 KB
/
TIPE_3005.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
//Libraries
#include "LiquidCrystal.h"
#include <FastLED.h>//https://github.com/FastLED/FastLED
//Constants
#define NUM_STRIPS 1
#define NUM_LEDS 48
#define BRIGHTNESS 10
#define LED_TYPE WS2812B
#define COLOR_ORDER BRG//RGB
#define FASTLED_ALLOW_INTERRUPTS 0
#define FASTLED_INTERRUPT_RETRY_COUNT 1
#define FRAMES_PER_SECOND 60
#define COOLING 55
#define SPARKING 120
#define diametre 0.58
#define pi 3.14159265359
const int capteur = 2;
const int Bgauche = 11;
const int Bdroite = 10;
boolean ini = true;
long debut;
int compteur = 0;
double vit;
double Vmoy;
int minutes ;
String vitesse = "0";
long dernierInstant;
const int stripPin = 9;
//Objects
CRGB leds[NUM_LEDS];
LiquidCrystal LCD(8, 3, 7, 6, 5, 4);
byte customChar[8] = {
0b11111,
0b11111,
0b11111,
0b11111,
0b11111,
0b11111,
0b11111,
0b11111
};
// SETUP #######################################################################################################
void setup() {
pinMode(capteur, INPUT);
pinMode(Bdroite, INPUT);
pinMode(Bgauche, INPUT);
LCD.begin(16, 2); // définit le type d'écran lcd 16 x 2
LCD.createChar(0, customChar);
LCD.setCursor(3, 0);
LCD.print("#INIT#");
LCD.setCursor(6, 1);
LCD.print("Bonjour !");
//Init led strips
FastLED.addLeds<LED_TYPE, stripPin, COLOR_ORDER>(leds, NUM_LEDS);
FastLED.setBrightness( BRIGHTNESS );
//attachInterrupt(digitalPinToInterrupt(2), incremente, RISING);
delay(500);
LCD.clear();
while(digitalRead(capteur)==0){
}
while(digitalRead(capteur)==1){
}
debut = millis();
dernierInstant = millis()*0.001;
}
//Fonctions cligotants ########################################################################################
void ledScenario1() { /* function ledScenario */
////LEDS Strip scenario
for (int k = 0; k<3;k++){
LCD.clear();
for (int i = 24; i < 48; i++) {
//leds[i] = CRGB::Goldenrod;
leds[i].setRGB(255, 0, 127);
leds[i + 3].setRGB(255, 0, 127);
FastLED.show();
delay(50);
leds[i] = CRGB::Black;
FastLED.show();
if(i>=32){
LCD.setCursor(i-32, 0);
LCD.write((byte)0);
LCD.setCursor(i-32, 1);
LCD.write((byte)0);
}
delay(10);
}
}
debut = debut + 4500;
FastLED.clear();
FastLED.show();
}
void ledScenario2() { /* function ledScenario */
////LEDS Strip scenario
for (int k = 0; k<3;k++){
LCD.clear();
for (int i = 23; i >= 0; i--) {
//leds[i] = CRGB::Goldenrod;
leds[i].setRGB(255, 0, 127);
leds[i - 3].setRGB(255, 0, 127);
FastLED.show();
delay(50);
leds[i] = CRGB::Black;
FastLED.show();
if(i<=15){
LCD.setCursor(i, 0);
LCD.write((byte)0);
LCD.setCursor(i, 1);
LCD.write((byte)0);
}
delay(10);
}
}
debut = debut + 4500;
FastLED.clear();
FastLED.show();
}
void refresh(double vit, int minutes, double Vmoy){ //Méthode qui met à jour les informations affichées sur l'écran (vitesse instantanée, vitesse moyenne et temps de parcours)
LCD.clear(); //On efface ce qui est affiché sur l'écran
LCD.setCursor(0, 0); //On place le curseur en (0,0) c'est-à-dire sur l'emplcament au niveau de la première colone et de la première ligne
LCD.print("Vit"); // On y écrit la chaîne de caractère "Vit"
LCD.setCursor(5, 0);
LCD.print("Min");
LCD.setCursor(0, 1);
LCD.print(String(vit, 1));
LCD.setCursor(10, 0);
LCD.print("Vmoy");
LCD.setCursor(10, 1);
LCD.print(String(Vmoy, 1));
if (minutes < 10){
LCD.setCursor(7, 1);
LCD.print(minutes);
}
else if (minutes < 100){
LCD.setCursor(6, 1);
LCD.print(minutes);
}
else{
LCD.setCursor(5, 1);
LCD.print(minutes);
}
}
//LOOP#####################################################################################################
void loop(){
while(digitalRead(capteur) == 0){
if(digitalRead(Bdroite) ==1 && digitalRead(Bgauche) ==1){
debut = millis();
compteur = 0;
}
else if(digitalRead(Bdroite) ==1){
ledScenario1();
}
else if(digitalRead(Bgauche) ==1){
ledScenario2();
}
}
vit = ((pi*diametre)*0.001)/(((millis()*0.001)-dernierInstant)/36000);
dernierInstant = millis()*0.001;
minutes = millis()*(0.001/60);
if(vit < 50){
compteur++;
Vmoy = ((pi*diametre*compteur)*0.001)/((millis()-debut)*(0.001/36000));
refresh(vit,minutes,Vmoy);
}
while(digitalRead(capteur)){
}
delay(10);
}