Compare commits
7 Commits
94448fc0fe
...
441a32154d
Author | SHA1 | Date |
---|---|---|
gilex-dev | 441a32154d | |
gilex-dev | dd55af6d9c | |
gilex-dev | 782fe8cf04 | |
gilex-dev | 900a1d9af2 | |
gilex-dev | 8c9de56fab | |
gilex-dev | e47bc6c4ab | |
gilex-dev | 5a73ef97dd |
|
@ -16,4 +16,3 @@ upload_speed = 921600
|
|||
monitor_speed = 74880
|
||||
lib_deps =
|
||||
ropg/ezTime@^0.8.3
|
||||
paulstoffregen/OneWire@^2.3.7
|
||||
|
|
21
src/html.cpp
21
src/html.cpp
|
@ -2,23 +2,6 @@
|
|||
#include <Arduino.h>
|
||||
|
||||
void reload_home() {
|
||||
char time_current[3][3] = {"", "", ""};
|
||||
if (myTime.hour() < 10) {
|
||||
sprintf(time_current[0], "0%d", myTime.hour());
|
||||
} else {
|
||||
sprintf(time_current[0], "%d", myTime.hour());
|
||||
}
|
||||
if (myTime.minute() < 10) {
|
||||
sprintf(time_current[1], "0%d", myTime.minute());
|
||||
} else {
|
||||
sprintf(time_current[1], "%d", myTime.minute());
|
||||
}
|
||||
if (myTime.second() < 10) {
|
||||
sprintf(time_current[2], "0%d", myTime.second());
|
||||
} else {
|
||||
sprintf(time_current[2], "%d", myTime.second());
|
||||
}
|
||||
|
||||
sprintf(home_html, "<!DOCTYPE html>\
|
||||
<html lang='de'>\
|
||||
<head>\
|
||||
|
@ -79,7 +62,7 @@ void reload_home() {
|
|||
<body>\
|
||||
<div class='wrapper_main'>\
|
||||
<h1>Übersicht</h1>\
|
||||
<h2>Uhrzeit: <span>%s:%s:%s</span></h2>\
|
||||
<h2>Uhrzeit: <span>%02d:%02d:%02d</span></h2>\
|
||||
<div class='wrapper_form'>\
|
||||
<div>\
|
||||
<span>Ventil 1: </span>\
|
||||
|
@ -120,7 +103,7 @@ void reload_home() {
|
|||
</div>\
|
||||
</body>\
|
||||
</html>",
|
||||
time_current[0], time_current[1], time_current[2], stat[0], stat[1],
|
||||
myTime.hour(), myTime.minute(), myTime.second(), stat[0], stat[1],
|
||||
stat[2], stat[3], stat[4], stat[5], stat[6], stat[7]);
|
||||
}
|
||||
|
||||
|
|
|
@ -159,11 +159,7 @@ void load_EEPROM() {
|
|||
unsigned int EEPROM_Addr = 0;
|
||||
for (unsigned int i0 = 0; i0 < 8; i0++) {
|
||||
for (unsigned int i = 0; i < 8; i++) {
|
||||
if (EEPROM.read(EEPROM_Addr) < 10) {
|
||||
sprintf(time_all[i0][i], "0%d", EEPROM.read(EEPROM_Addr));
|
||||
} else {
|
||||
sprintf(time_all[i0][i], "%d", EEPROM.read(EEPROM_Addr));
|
||||
}
|
||||
sprintf(time_all[i0][i], "%02d", EEPROM.read(EEPROM_Addr));
|
||||
EEPROM_Addr += 4;
|
||||
yield();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue