fix: OK blink #7
@ -54,28 +54,15 @@ int LedLib::getledNB(){
|
||||
}
|
||||
|
||||
void LedLib::okBlink(){
|
||||
int tempR;
|
||||
int tempV;
|
||||
int tempB;
|
||||
|
||||
for (int i = 0; i < 3*2; i++) {
|
||||
if(i%2 == 0){
|
||||
tempR = 0;
|
||||
tempV = 0;
|
||||
tempB = 0;
|
||||
|
||||
}else{
|
||||
tempR = 75;
|
||||
tempV = 181;
|
||||
tempB = 67;
|
||||
this->strip->clear();
|
||||
for(int i = 0; i < 3; i++){
|
||||
for(int j = 0; j < 24; j++){
|
||||
this->strip->setPixelColor(j, 0, 255, 0);
|
||||
}
|
||||
|
||||
for (int j = 0; j < 24; j++) {
|
||||
// On fait clignoter les LEDs pour confirmer
|
||||
// We make the LEDs blink to confirm
|
||||
this->strip->setPixelColor(j-1, tempR, tempV, tempB);
|
||||
}
|
||||
|
||||
this->strip->show();
|
||||
delay(100);
|
||||
this->strip->clear();
|
||||
this->strip->show();
|
||||
delay(100);
|
||||
}
|
||||
}
|
||||
|
@ -39,6 +39,8 @@ Program::Program() {
|
||||
// Startup LEDs
|
||||
this->ledLib = new LedLib(PIXEL_COUNT, PIXEL_PIN, 255);
|
||||
|
||||
this->ledLib->okBlink();
|
||||
|
||||
}
|
||||
|
||||
void Program::sendTime(String timeEnd){
|
||||
|
Loading…
x
Reference in New Issue
Block a user