mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 20:16:55 +03:00
overview_add_date_and_time (#3398)
* overview_add_date_and_time * Update overview.html --------- Co-authored-by: CaCO3 <caco3@ruinelli.ch>
This commit is contained in:
@@ -1487,6 +1487,28 @@ esp_err_t handler_rssi(httpd_req_t *req)
|
|||||||
return ESP_OK;
|
return ESP_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
esp_err_t handler_current_date(httpd_req_t *req)
|
||||||
|
{
|
||||||
|
#ifdef DEBUG_DETAIL_ON
|
||||||
|
LogFile.WriteHeapInfo("handler_uptime - Start");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
std::string formatedDateAndTime = getCurrentTimeString("%Y-%m-%d %H:%M:%S");
|
||||||
|
// std::string formatedDate = getCurrentTimeString("%Y-%m-%d");
|
||||||
|
|
||||||
|
httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
|
||||||
|
httpd_resp_send(req, formatedDateAndTime.c_str(), formatedDateAndTime.length());
|
||||||
|
|
||||||
|
/* Respond with an empty chunk to signal HTTP response completion */
|
||||||
|
httpd_resp_sendstr_chunk(req, NULL);
|
||||||
|
|
||||||
|
#ifdef DEBUG_DETAIL_ON
|
||||||
|
LogFile.WriteHeapInfo("handler_uptime - End");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return ESP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
esp_err_t handler_uptime(httpd_req_t *req)
|
esp_err_t handler_uptime(httpd_req_t *req)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG_DETAIL_ON
|
#ifdef DEBUG_DETAIL_ON
|
||||||
@@ -1798,6 +1820,11 @@ void register_server_main_flow_task_uri(httpd_handle_t server)
|
|||||||
camuri.user_ctx = (void *)"Light Off";
|
camuri.user_ctx = (void *)"Light Off";
|
||||||
httpd_register_uri_handler(server, &camuri);
|
httpd_register_uri_handler(server, &camuri);
|
||||||
|
|
||||||
|
camuri.uri = "/date";
|
||||||
|
camuri.handler = handler_current_date;
|
||||||
|
camuri.user_ctx = (void *)"Light Off";
|
||||||
|
httpd_register_uri_handler(server, &camuri);
|
||||||
|
|
||||||
camuri.uri = "/uptime";
|
camuri.uri = "/uptime";
|
||||||
camuri.handler = handler_uptime;
|
camuri.handler = handler_uptime;
|
||||||
camuri.user_ctx = (void *)"Light Off";
|
camuri.user_ctx = (void *)"Light Off";
|
||||||
|
|||||||
@@ -459,7 +459,7 @@ httpd_handle_t start_webserver(void)
|
|||||||
config.server_port = 80;
|
config.server_port = 80;
|
||||||
config.ctrl_port = 32768;
|
config.ctrl_port = 32768;
|
||||||
config.max_open_sockets = 5; //20210921 --> previously 7
|
config.max_open_sockets = 5; //20210921 --> previously 7
|
||||||
config.max_uri_handlers = 40; // Make sure this fits all URI handlers. Memory usage in bytes: 6*max_uri_handlers
|
config.max_uri_handlers = 41; // Make sure this fits all URI handlers. Memory usage in bytes: 6*max_uri_handlers
|
||||||
config.max_resp_headers = 8;
|
config.max_resp_headers = 8;
|
||||||
config.backlog_conn = 5;
|
config.backlog_conn = 5;
|
||||||
config.lru_purge_enable = true; // this cuts old connections if new ones are needed.
|
config.lru_purge_enable = true; // this cuts old connections if new ones are needed.
|
||||||
|
|||||||
@@ -118,6 +118,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="tg-4">
|
<td class="tg-4">
|
||||||
|
<div id="sntp_date" ></div>
|
||||||
<div id="timestamp" ></div>
|
<div id="timestamp" ></div>
|
||||||
<div id="cputemp" ></div>
|
<div id="cputemp" ></div>
|
||||||
<div id="rssi" ></div>
|
<div id="rssi" ></div>
|
||||||
@@ -153,6 +154,7 @@
|
|||||||
loadValue("prevalue", "prevalue", "border-collapse: collapse; width: 100%");
|
loadValue("prevalue", "prevalue", "border-collapse: collapse; width: 100%");
|
||||||
loadValue("error", "error", "border-collapse: collapse; width: 100%");
|
loadValue("error", "error", "border-collapse: collapse; width: 100%");
|
||||||
loadStatus();
|
loadStatus();
|
||||||
|
loadSntpDate();
|
||||||
loadCPUTemp();
|
loadCPUTemp();
|
||||||
loadRSSI();
|
loadRSSI();
|
||||||
loadUptime();
|
loadUptime();
|
||||||
@@ -234,6 +236,20 @@
|
|||||||
xhttp.send();
|
xhttp.send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function loadSntpDate() {
|
||||||
|
url = domainname + '/date';
|
||||||
|
var xhttp = new XMLHttpRequest();
|
||||||
|
xhttp.onreadystatechange = function () {
|
||||||
|
if (this.readyState == 4 && this.status == 200) {
|
||||||
|
var _rsp = xhttp.responseText;
|
||||||
|
$('#sntp_date').html("Date/Time on device: " + _rsp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
xhttp.open("GET", url, true);
|
||||||
|
xhttp.send();
|
||||||
|
}
|
||||||
|
|
||||||
function loadUptime() {
|
function loadUptime() {
|
||||||
url = domainname + '/uptime';
|
url = domainname + '/uptime';
|
||||||
var xhttp = new XMLHttpRequest();
|
var xhttp = new XMLHttpRequest();
|
||||||
|
|||||||
Reference in New Issue
Block a user