6 Commits

Author SHA1 Message Date
3fc400e655 Merge commit '5e86674e6832d25ee053b1c03e85c372cad42547' into feat/main-algo 2023-11-17 19:37:46 +01:00
5e86674e68 fix: OK blink (#7)
Co-authored-by: Clement <c.boesmier@aptatio.com>
Reviewed-on: #7
2023-11-17 19:36:01 +01:00
a9400fba95 sync 2023-10-27 20:10:57 +02:00
2096f748d0 add doxygen output to git ignore 2023-10-27 20:05:17 +02:00
f49d3de893 add main alogo WIP 2023-10-25 22:36:09 +02:00
92943ff3e9 feat: ajout start led on led lib (#5) 2023-10-22 00:34:20 +02:00
6 changed files with 80 additions and 30 deletions

4
.gitignore vendored
View File

@ -3,4 +3,6 @@
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
secrets.ini
secrets.ini
docs/output/*

View File

@ -26,3 +26,5 @@ build_flags =
-D PIXEL_PIN=4
-D PIXEL_COUNT=24
-D RESET_TIME=60000

View File

@ -40,6 +40,16 @@ private:
WiFiUDP* ntpUDP;
NTPClient* timeClient;
/**
* @brief Time to reset the encoder menu
*/
unsigned long resetMillis;
/**
* @brief true if the NTP is updated durring the cycle
*/
bool ntpUpdated;
/**
* @brief Send time to discord
* the start time is automaticly set to the current time

View File

@ -26,9 +26,10 @@ void LedLib::actLed(int nb, int start){
// Boucle dans les LEDs
// Loop in LEDs
for (int i = start; i <= nb+start-1; i++) {
for (int i = start; i <= nb+start; i++) {
int j = i;
if(j > 24){
//TODO: géré le cas ou j > 24
if(j >= 24){
j -= 24;
}
@ -52,30 +53,17 @@ void LedLib::actLed(int nb, int start){
int LedLib::getledNB(){
return this->ledNb;
}
//FIXME: this function is broken
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);
}
}

View File

@ -17,7 +17,7 @@ SwitchableEncodeur::SwitchableEncodeur(uint8_t pin1, uint8_t pin2, uint8_t pinSW
this->menu = 0;
this->nbMenu = nbMenu;
pinMode(pinSW, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(pinSW), switchEncoder, RISING);//FIXME: maybe change to FALLING
attachInterrupt(digitalPinToInterrupt(pinSW), switchEncoder, RISING);
this->oldPosition = -999;
this->oldMenu = -999;
}

View File

@ -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){
@ -52,11 +54,57 @@ void Program::sendTime(String timeEnd){
void Program::loop() {
if(this->encoder->update()){
switch (this->encoder->getMenu()){
case 1:{
if(!this->ntpUpdated){
this->timeClient->update();
this->encoder->resetMenu();
this->ntpUpdated = true;
}
int currentHour = this->timeClient->getHours();
if(currentHour > 12){
currentHour -= 12;
}
//TODO: debug this shit
int startLed = currentHour * 2;
startLed += this->timeClient->getMinutes()/30;
int encValue = this->encoder->getValue();
Serial.println(startLed);
this->ledLib->actLed(encValue+1, startLed);
break;
}case 2:{
int finalEncValue = this->encoder->getValue();
int finalHour = this->timeClient->getHours();
int finalMinute = this->timeClient->getMinutes();
Serial.print("finalHour: ");
Serial.print(finalHour);
Serial.print("h");
Serial.print(finalMinute);
Serial.print(" finalEncValue: ");
Serial.println(finalEncValue);
// TODO: send time sur discord
//this->sendTime()
this->ledLib->okBlink();
this->ntpUpdated = false;
this->encoder->resetMenu();
this->resetMillis = millis();
break;
}}
Serial.print(this->encoder->getValue());
this->ledLib->actLed(this->encoder->getValue(), 5);
Serial.print(" ");
Serial.println(this->encoder->getMenu());
//this->ledLib->actLed(this->encoder->getValue(), 5);
}
if(this->resetMillis + RESET_TIME == millis()){
this->encoder->resetMenu();
this->resetMillis = millis();
this->ntpUpdated = false;
}
// delay(1000);
// this->timeClient->update();