Skip to content

Commit

Permalink
Add esp32 timestamp to dashboard page
Browse files Browse the repository at this point in the history
Hotfix timestamp off by 17 minutes when set system time
  • Loading branch information
samuelbles07 committed Dec 6, 2024
1 parent e2798f1 commit 67b71f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions examples/OneOpenAir/LocalServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,13 @@ void LocalServer::_POST_time(void) {
void LocalServer::setFwMode(AgFirmwareMode fwMode) { this->fwMode = fwMode; }

String LocalServer::htmlDashboard(String timestamp) {
// TODO: Set timestamp
String page = "";
page += "<!DOCTYPE html>";
page += "<html lang=\"en\">";
page += "<head>";
page += " <meta charset=\"UTF-8\">";
page += " <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">";
page += " <title>Button Layout with Datetime Picker</title>";
page += " <title>AirGradient Local Storage Mode</title>";
page += " <style>";
page += " body {";
page += " font-family: Arial, sans-serif;";
Expand Down Expand Up @@ -168,6 +167,9 @@ String LocalServer::htmlDashboard(String timestamp) {
page += " </style>";
page += "</head>";
page += "<body>";
page += " <h1>";
page += timestamp;
page += " </h1>";
page += " <form action=\"/storage/download\" method=\"GET\">";
page += " <button type=\"submit\">Download Measurements</button>";
page += " </form>";
Expand Down
3 changes: 2 additions & 1 deletion src/AirGradient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ String AirGradient::deviceId(void) {
void AirGradient::setCurrentTime(long epochTime) {
// set current day/time
struct timeval tv;
tv.tv_sec = epochTime;
tv.tv_sec = epochTime - 1020; // 17 minutes // don't know why it always off by 17 minutes
settimeofday(&tv, NULL);
Serial.println(epochTime);
Serial.printf("Set current time to %s\n", getCurrentTime().c_str());
}

Expand Down

0 comments on commit 67b71f5

Please sign in to comment.