3 Commits

Author SHA1 Message Date
c5901a2fa7 Merge commit '8edae04556c46aa0645792c6b3c021636bb454ff' into feat--add-ntp-support 2023-10-21 19:11:44 +02:00
2a61d59edc add sendTime 2023-09-01 21:09:08 +02:00
2c138a3225 feat: test ntp 2023-08-18 21:34:05 +02:00
4 changed files with 22 additions and 42 deletions

View File

@ -11,7 +11,7 @@ public :
// Fonction pour allumer correctement les LEDs en fonction du Rotary
// Function to manage LEDs colors according to the Rotary
void actLed(int nb, int start = 0);
void actLed(int nb);
// Fonction qui renvoie le nombre de LEDs allumées
// Function that returns the number of LEDs lit

View File

@ -13,7 +13,7 @@ LedLib::LedLib(int pixelCount, int pixelPin, int bright){
// Fonction pour allumer correctement les LEDs en fonction du Rotary
// Function to manage LEDs colors according to the Rotary
void LedLib::actLed(int nb, int start){
void LedLib::actLed(int nb){
this->ledNb = nb;
// On éteint tout
@ -26,18 +26,14 @@ void LedLib::actLed(int nb, int start){
// Boucle dans les LEDs
// Loop in LEDs
for (int i = start; i <= nb+start-1; i++) {
int j = i;
if(j > 24){
j -= 24;
}
for (int i = 0; i < nb+1; i++) {
// Une LED sur deux est blanche : heure entière, l'autre rouge pour 30m
// One LED out of two is white: whole hour, the other red for 30m
if (j%2 == 0) {
this->strip->setPixelColor(j, 255, 255, 255);
if (i%2 == 0) {
this->strip->setPixelColor(i-1, 255, 255, 255);
}else{
this->strip->setPixelColor(j, 255, 0, 0);
this->strip->setPixelColor(i-1, 255, 0, 0);
}
}
}

View File

@ -1,13 +1,7 @@
#include "../include/SwitchableEncodeur.h"
IRAM_ATTR void switchEncoder() {
static unsigned long last_interrupt_time = 0;
unsigned long interrupt_time = millis();
// If interrupts come faster than 200ms, assume it's a bounce and ignore
if (interrupt_time - last_interrupt_time > 200){
SwitchableEncodeur::getInstance()->addMenu();
}
last_interrupt_time = interrupt_time;
SwitchableEncodeur::getInstance()->addMenu();
}
SwitchableEncodeur* SwitchableEncodeur::instance = nullptr;
@ -48,9 +42,6 @@ bool SwitchableEncodeur::update() {
if (newPosition != this->oldPosition || this->menu != this->oldMenu) {
this->oldMenu = this->menu;
this->oldPosition = newPosition;
if(this->oldPosition < 0){
this->oldPosition = 0;
}
sortie = true;
}
return sortie;

View File

@ -32,13 +32,6 @@ Program::Program() {
this->timeClient->update();
//this->sendTime("18h12");
// Startup Rotary
this->encoder = new SwitchableEncodeur(ENCODER_DT, ENCODER_CLK, ENCODER_SWITCH, 3);
// Startup LEDs
this->ledLib = new LedLib(PIXEL_COUNT, PIXEL_PIN, 255);
}
void Program::sendTime(String timeEnd){
@ -53,27 +46,27 @@ void Program::sendTime(String timeEnd){
void Program::loop() {
if(this->encoder->update()){
Serial.print(this->encoder->getValue());
this->ledLib->actLed(this->encoder->getValue(), 5);
this->ledLib->actLed(this->encoder->getValue());
Serial.print(" ");
Serial.println(this->encoder->getMenu());
}
// delay(1000);
delay(1000);
// this->timeClient->update();
this->timeClient->update();
// int currentHour = this->timeClient->getHours();
// Serial.print("Hour: ");
// Serial.println(currentHour);
int currentHour = this->timeClient->getHours();
Serial.print("Hour: ");
Serial.println(currentHour);
// int currentMinute = this->timeClient->getMinutes();
// Serial.print("Minutes: ");
// Serial.println(currentMinute);
int currentMinute = this->timeClient->getMinutes();
Serial.print("Minutes: ");
Serial.println(currentMinute);
// int currentSecond = this->timeClient->getSeconds();
// Serial.print("Seconds: ");
// Serial.println(currentSecond);
int currentSecond = this->timeClient->getSeconds();
Serial.print("Seconds: ");
Serial.println(currentSecond);
// int currentDayOfWeek = this->timeClient->getDay();
// Serial.print("Day of week: ");
// Serial.println(currentDayOfWeek);
int currentDayOfWeek = this->timeClient->getDay();
Serial.print("Day of week: ");
Serial.println(currentDayOfWeek);
}