Compare commits
2 Commits
fix/OKblin
...
main-code
Author | SHA1 | Date | |
---|---|---|---|
1ed2a4cec3 | |||
2e64f4ff6f |
@ -26,3 +26,5 @@ build_flags =
|
|||||||
|
|
||||||
-D PIXEL_PIN=4
|
-D PIXEL_PIN=4
|
||||||
-D PIXEL_COUNT=24
|
-D PIXEL_COUNT=24
|
||||||
|
|
||||||
|
-D RESET_TIME=60000
|
||||||
|
@ -40,6 +40,8 @@ private:
|
|||||||
WiFiUDP* ntpUDP;
|
WiFiUDP* ntpUDP;
|
||||||
NTPClient* timeClient;
|
NTPClient* timeClient;
|
||||||
|
|
||||||
|
ulong lastMillis;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Send time to discord
|
* @brief Send time to discord
|
||||||
* the start time is automaticly set to the current time
|
* the start time is automaticly set to the current time
|
||||||
|
@ -26,18 +26,14 @@ void LedLib::actLed(int nb, int start){
|
|||||||
|
|
||||||
// Boucle dans les LEDs
|
// Boucle dans les LEDs
|
||||||
// Loop in LEDs
|
// Loop in LEDs
|
||||||
for (int i = start; i <= nb+start-1; i++) {
|
for (int i = start; i < start+nb+1; i++) {
|
||||||
int j = i;
|
|
||||||
if(j > 24){
|
|
||||||
j -= 24;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Une LED sur deux est blanche : heure entière, l'autre rouge pour 30m
|
// 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
|
// One LED out of two is white: whole hour, the other red for 30m
|
||||||
if (j%2 == 0) {
|
if (i-start%2 == 0) {
|
||||||
this->strip->setPixelColor(j, 255, 255, 255);
|
this->strip->setPixelColor(i-1, 255, 255, 255);
|
||||||
}else{
|
}else{
|
||||||
this->strip->setPixelColor(j, 255, 0, 0);
|
this->strip->setPixelColor(i-1, 255, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -54,15 +50,28 @@ int LedLib::getledNB(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LedLib::okBlink(){
|
void LedLib::okBlink(){
|
||||||
this->strip->clear();
|
int tempR;
|
||||||
for(int i = 0; i < 3; i++){
|
int tempV;
|
||||||
for(int j = 0; j < 24; j++){
|
int tempB;
|
||||||
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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,7 @@
|
|||||||
#include "../include/SwitchableEncodeur.h"
|
#include "../include/SwitchableEncodeur.h"
|
||||||
|
|
||||||
IRAM_ATTR void switchEncoder() {
|
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();
|
SwitchableEncodeur::getInstance()->addMenu();
|
||||||
}
|
|
||||||
last_interrupt_time = interrupt_time;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SwitchableEncodeur* SwitchableEncodeur::instance = nullptr;
|
SwitchableEncodeur* SwitchableEncodeur::instance = nullptr;
|
||||||
@ -48,9 +42,6 @@ bool SwitchableEncodeur::update() {
|
|||||||
if (newPosition != this->oldPosition || this->menu != this->oldMenu) {
|
if (newPosition != this->oldPosition || this->menu != this->oldMenu) {
|
||||||
this->oldMenu = this->menu;
|
this->oldMenu = this->menu;
|
||||||
this->oldPosition = newPosition;
|
this->oldPosition = newPosition;
|
||||||
if(this->oldPosition < 0){
|
|
||||||
this->oldPosition = 0;
|
|
||||||
}
|
|
||||||
sortie = true;
|
sortie = true;
|
||||||
}
|
}
|
||||||
return sortie;
|
return sortie;
|
||||||
|
@ -32,15 +32,6 @@ Program::Program() {
|
|||||||
|
|
||||||
this->timeClient->update();
|
this->timeClient->update();
|
||||||
//this->sendTime("18h12");
|
//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);
|
|
||||||
|
|
||||||
this->ledLib->okBlink();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Program::sendTime(String timeEnd){
|
void Program::sendTime(String timeEnd){
|
||||||
@ -53,29 +44,61 @@ void Program::sendTime(String timeEnd){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Program::loop() {
|
void Program::loop() {
|
||||||
|
ulong currentMillis = millis();
|
||||||
|
if (currentMillis + 1000 > this->lastMillis) {
|
||||||
|
this->lastMillis = currentMillis;
|
||||||
|
this->encoder->resetMenu();
|
||||||
|
this->encoder->resetValue();
|
||||||
|
this->ledLib->actLed(0);
|
||||||
|
}
|
||||||
|
if(this->encoder->update()){
|
||||||
|
switch (this->encoder->getMenu()) {
|
||||||
|
case 1:
|
||||||
|
this->encoder->resetValue();
|
||||||
|
this->timeClient->update();
|
||||||
|
int day = this->timeClient->getDay();
|
||||||
|
int hour = this->timeClient->getHours();
|
||||||
|
int halfHourNb = hour > 12 ? hour - 12 : hour;
|
||||||
|
halfHourNb *= 2;
|
||||||
|
int minute = this->timeClient->getMinutes();
|
||||||
|
if(minute > 30){
|
||||||
|
halfHourNb++;
|
||||||
|
}
|
||||||
|
if(day == 2 || day == 5){
|
||||||
|
//TODO: mettre l'heure d'envoie par defaut a 22h
|
||||||
|
}
|
||||||
|
int openTime = this->encoder->getValue();
|
||||||
|
this->ledLib->actLed(openTime,halfHourNb);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
this->encoder->resetValue();
|
||||||
|
//this->sendTime();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
if(this->encoder->update()){
|
if(this->encoder->update()){
|
||||||
Serial.print(this->encoder->getValue());
|
Serial.print(this->encoder->getValue());
|
||||||
this->ledLib->actLed(this->encoder->getValue(), 5);
|
this->ledLib->actLed(this->encoder->getValue());
|
||||||
Serial.print(" ");
|
Serial.print(" ");
|
||||||
Serial.println(this->encoder->getMenu());
|
Serial.println(this->encoder->getMenu());
|
||||||
}
|
}
|
||||||
// delay(1000);
|
delay(1000);
|
||||||
|
|
||||||
// this->timeClient->update();
|
this->timeClient->update();
|
||||||
|
|
||||||
// int currentHour = this->timeClient->getHours();
|
int currentHour = this->timeClient->getHours();
|
||||||
// Serial.print("Hour: ");
|
Serial.print("Hour: ");
|
||||||
// Serial.println(currentHour);
|
Serial.println(currentHour);
|
||||||
|
|
||||||
// int currentMinute = this->timeClient->getMinutes();
|
int currentMinute = this->timeClient->getMinutes();
|
||||||
// Serial.print("Minutes: ");
|
Serial.print("Minutes: ");
|
||||||
// Serial.println(currentMinute);
|
Serial.println(currentMinute);
|
||||||
|
|
||||||
// int currentSecond = this->timeClient->getSeconds();
|
int currentSecond = this->timeClient->getSeconds();
|
||||||
// Serial.print("Seconds: ");
|
Serial.print("Seconds: ");
|
||||||
// Serial.println(currentSecond);
|
Serial.println(currentSecond);
|
||||||
|
|
||||||
// int currentDayOfWeek = this->timeClient->getDay();
|
int currentDayOfWeek = this->timeClient->getDay();
|
||||||
// Serial.print("Day of week: ");
|
Serial.print("Day of week: ");
|
||||||
// Serial.println(currentDayOfWeek);
|
Serial.println(currentDayOfWeek);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user