From 5e86674e6832d25ee053b1c03e85c372cad42547 Mon Sep 17 00:00:00 2001 From: Clement Date: Fri, 17 Nov 2023 19:36:01 +0100 Subject: [PATCH] fix: OK blink (#7) Co-authored-by: Clement Reviewed-on: https://git.lab-ouest.org/Labouest/bouton_ouverture_V2/pulls/7 --- lib/LedLib/scr/LedLib.cpp | 35 +++++++++++------------------------ src/Program.cpp | 2 ++ 2 files changed, 13 insertions(+), 24 deletions(-) diff --git a/lib/LedLib/scr/LedLib.cpp b/lib/LedLib/scr/LedLib.cpp index 2a9c9ed..4f17975 100644 --- a/lib/LedLib/scr/LedLib.cpp +++ b/lib/LedLib/scr/LedLib.cpp @@ -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; - } - - 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->clear(); + for(int i = 0; i < 3; i++){ + for(int j = 0; j < 24; j++){ + this->strip->setPixelColor(j, 0, 255, 0); + } + this->strip->show(); + delay(100); + this->strip->clear(); + this->strip->show(); + delay(100); + } } diff --git a/src/Program.cpp b/src/Program.cpp index ea8cd16..102fdb1 100644 --- a/src/Program.cpp +++ b/src/Program.cpp @@ -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){