fix: OK blink #7

Merged
Clement merged 2 commits from fix/OKblink into master 2023-11-17 18:36:02 +00:00
2 changed files with 13 additions and 24 deletions

View File

@ -54,28 +54,15 @@ int LedLib::getledNB(){
} }
void LedLib::okBlink(){ void LedLib::okBlink(){
int tempR; this->strip->clear();
int tempV; for(int i = 0; i < 3; i++){
int tempB; for(int j = 0; j < 24; j++){
this->strip->setPixelColor(j, 0, 255, 0);
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;
} }
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(); this->strip->show();
delay(100);
this->strip->clear();
this->strip->show();
delay(100);
} }
} }

View File

@ -39,6 +39,8 @@ Program::Program() {
// Startup LEDs // Startup LEDs
this->ledLib = new LedLib(PIXEL_COUNT, PIXEL_PIN, 255); this->ledLib = new LedLib(PIXEL_COUNT, PIXEL_PIN, 255);
this->ledLib->okBlink();
} }
void Program::sendTime(String timeEnd){ void Program::sendTime(String timeEnd){