This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Modify feb 28/2022 MB | |
long lastTime = 0; | |
int seconds = 0; //Jamais plus grand que 60, donc on peut mettre un int | |
String seconds_str = "00"; | |
long minutes = 0; //Jamais plus grand que 60, donc on peut mettre un int | |
String minutes_str = "00"; | |
long hours = 0; //Jamais plus grand que 24, donc on peut mettre un int | |
String hours_str = "00"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Modify feb 28/2022 MB | |
long lastTime = 0; | |
long seconds = 0; | |
String seconds_str = "00"; | |
long minutes = 0; | |
String minutes_str = "00"; | |
long hours = 0; | |
String hours_str = "00"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Modify feb 28/2022 MB | |
long lastTime = 0; | |
long seconds = 0; | |
long minutes = 0; | |
long hours = 0; | |
long myTime1; | |
//#include <LiquidCrystal_I2C.h> | |
//LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display | |
void setup() { |