Compare commits
7 Commits
feat--add-
...
master
Author | SHA1 | Date | |
---|---|---|---|
58516e5f7c | |||
6d77a22a76 | |||
84b7a341da | |||
8afc5b7d2f | |||
5e86674e68 | |||
92943ff3e9 | |||
470abe2804 |
@ -26,3 +26,5 @@ build_flags =
|
||||
|
||||
-D PIXEL_PIN=4
|
||||
-D PIXEL_COUNT=24
|
||||
|
||||
-D RESET_TIME=60000
|
||||
|
1
docs/.gitignore
vendored
Normal file
1
docs/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
output
|
@ -3,12 +3,19 @@
|
||||
|
||||
#include <Arduino.h>
|
||||
#include <ESP8266WiFi.h>
|
||||
#include <NTPClient.h>
|
||||
#include <WiFiUdp.h>
|
||||
|
||||
#include "DiscordAPI.h"
|
||||
#include "SwitchableEncodeur.h"
|
||||
#include "LedLib.h"
|
||||
|
||||
|
||||
enum MainMenu{
|
||||
INITIAL_STATE,
|
||||
GET_START_HOUR,
|
||||
SELECT_END_HOUR,
|
||||
SEND_TO_DISCORD
|
||||
};
|
||||
|
||||
class Program {
|
||||
public:
|
||||
@ -35,6 +42,28 @@ private:
|
||||
DiscordAPI* discord;
|
||||
|
||||
LedLib* ledLib;
|
||||
WiFiUDP* ntpUDP;
|
||||
NTPClient* timeClient;
|
||||
|
||||
/**
|
||||
* @brief Send time to discord
|
||||
* the start time is automaticly set to the current time
|
||||
* @param[in] timeEnd LabOuest closing time
|
||||
*/
|
||||
void sendTime(String timeEnd);
|
||||
|
||||
//state of the button
|
||||
MainMenu menu;
|
||||
|
||||
//temps de reset in ms
|
||||
ulong resetMillis;
|
||||
|
||||
//numéro de led de dépard
|
||||
int nLedStart;
|
||||
|
||||
// apres midi
|
||||
bool pm;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -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);
|
||||
void actLed(int nb, int start = 0);
|
||||
|
||||
// Fonction qui renvoie le nombre de LEDs allumées
|
||||
// Function that returns the number of LEDs lit
|
||||
|
@ -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){
|
||||
void LedLib::actLed(int nb, int start){
|
||||
this->ledNb = nb;
|
||||
|
||||
// On éteint tout
|
||||
@ -26,14 +26,18 @@ void LedLib::actLed(int nb){
|
||||
|
||||
// Boucle dans les LEDs
|
||||
// Loop in LEDs
|
||||
for (int i = 0; i < nb+1; i++) {
|
||||
for (int i = start; i <= nb+start-1; i++) {
|
||||
int j = i;
|
||||
if(j >= 24){
|
||||
j -= 24;
|
||||
}
|
||||
|
||||
// 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 (i%2 == 0) {
|
||||
this->strip->setPixelColor(i-1, 255, 255, 255);
|
||||
if (j%2 == 0) {
|
||||
this->strip->setPixelColor(j, 255, 255, 255);
|
||||
}else{
|
||||
this->strip->setPixelColor(i-1, 255, 0, 0);
|
||||
this->strip->setPixelColor(j, 255, 0, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -50,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;
|
||||
this->strip->clear();
|
||||
for(int i = 0; i < 3; i++){
|
||||
for(int j = 0; j < 24; j++){
|
||||
this->strip->setPixelColor(j, 0, 255, 0);
|
||||
}
|
||||
|
||||
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();
|
||||
delay(100);
|
||||
this->strip->clear();
|
||||
this->strip->show();
|
||||
delay(100);
|
||||
}
|
||||
}
|
||||
|
@ -39,6 +39,13 @@ public:
|
||||
*/
|
||||
int getValue();
|
||||
|
||||
/**
|
||||
* @brief set the encodeur value
|
||||
*
|
||||
* @param val the new encodeur value
|
||||
*/
|
||||
void setValue(int val);
|
||||
|
||||
/**
|
||||
* @brief update the encodeur value
|
||||
*
|
||||
|
@ -1,7 +1,13 @@
|
||||
#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* SwitchableEncodeur::instance = nullptr;
|
||||
@ -39,9 +45,16 @@ SwitchableEncodeur* SwitchableEncodeur::getInstance() {
|
||||
bool SwitchableEncodeur::update() {
|
||||
bool sortie = false;
|
||||
long newPosition = this->read()/4;
|
||||
if(newPosition < 0){
|
||||
newPosition = 0;
|
||||
this->readAndReset();
|
||||
}
|
||||
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;
|
||||
@ -53,4 +66,9 @@ int SwitchableEncodeur::getValue() {
|
||||
|
||||
void SwitchableEncodeur::resetValue() {
|
||||
this->oldPosition = 0;
|
||||
this->readAndReset();
|
||||
}
|
||||
|
||||
void SwitchableEncodeur::setValue(int val){
|
||||
this->write(val*4);
|
||||
}
|
||||
|
@ -53,6 +53,7 @@ lib_deps =
|
||||
; example:
|
||||
; erropix/ESP32 AnalogWrite@0.2
|
||||
adafruit/Adafruit NeoPixel@^1.11.0
|
||||
arduino-libraries/NTPClient@^3.2.1
|
||||
|
||||
; Checker settings
|
||||
check_tool = clangtidy, cppcheck
|
||||
|
115
src/Program.cpp
115
src/Program.cpp
@ -26,21 +26,120 @@ Program::Program() {
|
||||
|
||||
// Startup Discord API
|
||||
this->discord = new DiscordAPI(DISCORD_HOOK);
|
||||
delay(1000);
|
||||
//Serial.println(this->discord->sendHeure("10h", "18h"));
|
||||
// startup NTP
|
||||
this->ntpUDP = new WiFiUDP();
|
||||
this->timeClient = new NTPClient(*this->ntpUDP, "pool.ntp.org", 3600*1);//*2 = gnt+2
|
||||
|
||||
// Startup Encoder
|
||||
this->timeClient->update();
|
||||
|
||||
// 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();
|
||||
|
||||
this->menu=MainMenu::INITIAL_STATE;
|
||||
this->resetMillis = 0;
|
||||
}
|
||||
|
||||
void Program::sendTime(String timeEnd){
|
||||
String start = (String)this->timeClient->getHours() + "h";
|
||||
int startQuater = this->timeClient->getMinutes()/15;
|
||||
if (startQuater != 0){
|
||||
start += (String)(startQuater * 15);
|
||||
}
|
||||
this->discord->sendHeure(start, timeEnd);
|
||||
this->nLedStart = 0;
|
||||
this->pm = false;
|
||||
}
|
||||
|
||||
void Program::loop() {
|
||||
if(this->encoder->update()){
|
||||
Serial.print(this->encoder->getValue());
|
||||
this->ledLib->actLed(this->encoder->getValue());
|
||||
Serial.print(" ");
|
||||
Serial.println(this->encoder->getMenu());
|
||||
switch (this->menu){
|
||||
case MainMenu::INITIAL_STATE: // default state
|
||||
this->encoder->resetValue();
|
||||
this->ledLib->actLed(0,0);
|
||||
break;
|
||||
|
||||
case MainMenu::GET_START_HOUR:{ // get NTP Hour
|
||||
//TODO: géré heure d'été et d'hiver
|
||||
this->timeClient->update();
|
||||
int hour = this->timeClient->getHours();
|
||||
int min = this->timeClient->getMinutes();
|
||||
int day = this->timeClient->getDay();
|
||||
if(hour >= 12){
|
||||
hour -= 12;
|
||||
this->pm = true;
|
||||
}else{
|
||||
this->pm = false;
|
||||
}
|
||||
this->nLedStart = hour*2;
|
||||
if(min >= 30){
|
||||
this->nLedStart++;
|
||||
}
|
||||
this->menu=MainMenu::SELECT_END_HOUR;
|
||||
this->resetMillis = millis();
|
||||
if(day == 2 || day == 5){
|
||||
this->encoder->setValue(21-this->nLedStart);
|
||||
}else{
|
||||
this->encoder->setValue(1);
|
||||
}
|
||||
break;}
|
||||
case MainMenu::SELECT_END_HOUR: // select Close hour
|
||||
this->ledLib->actLed(this->encoder->getValue(), this->nLedStart);
|
||||
break;
|
||||
case MainMenu::SEND_TO_DISCORD:{ // send value to discord
|
||||
String strTime = "";
|
||||
bool min = false;
|
||||
int endLed = this->encoder->getValue();
|
||||
int hour = (this->nLedStart + endLed)/2;
|
||||
if(this->pm)hour += 12;
|
||||
if(this->nLedStart % 2 == 1){
|
||||
if(endLed % 2 == 1){
|
||||
hour -=1;
|
||||
min = true;
|
||||
}
|
||||
}else{
|
||||
if(endLed % 2 == 0){
|
||||
hour -=1;
|
||||
min = true;
|
||||
}
|
||||
}
|
||||
if(hour >= 24)hour -= 24;
|
||||
strTime += hour;
|
||||
strTime += "h";
|
||||
if(min)strTime += "30";
|
||||
this->sendTime(strTime);
|
||||
this->menu = MainMenu::INITIAL_STATE;
|
||||
this->encoder->resetMenu();
|
||||
this->encoder->resetValue();
|
||||
this->ledLib->okBlink();
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
// MAJ encodeur
|
||||
if(this->encoder->update()){
|
||||
if(this->encoder->getMenu() == 1 && this->menu == MainMenu::INITIAL_STATE){//passage de l'état initial au 1er état
|
||||
this->menu = MainMenu::GET_START_HOUR;
|
||||
}
|
||||
if(this->encoder->getMenu() == 2 && this->menu == MainMenu::SELECT_END_HOUR){//validation du choix de l'heure
|
||||
this->menu = MainMenu::SEND_TO_DISCORD;
|
||||
}
|
||||
}
|
||||
// Reseteur
|
||||
if(this->resetMillis + RESET_TIME == millis()){
|
||||
this->encoder->resetMenu();
|
||||
this->resetMillis = millis();
|
||||
this->menu = MainMenu::INITIAL_STATE;
|
||||
}
|
||||
//TODO: gestion cas d'erreur (pas de wifi, discord down,...)
|
||||
//TODO: gestion d'une ouverture de plus de 12h avec les led (chagement de couleur)
|
||||
|
||||
// int currentDayOfWeek = this->timeClient->getDay();
|
||||
// Serial.print("Day of week: ");
|
||||
// Serial.println(currentDayOfWeek);
|
||||
}
|
||||
|
@ -9,3 +9,5 @@ void setup() {
|
||||
void loop() {
|
||||
program->loop();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user