Skip to content

Commit d49ebc8

Browse files
committed
remove mqtt creds from status page and add uptime
1 parent 5a57625 commit d49ebc8

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ifndef IDF_PATH
77
endif
88

99
PROJECT_NAME := eq3_trv_control
10-
PROJECT_VER := 1.49-beta
10+
PROJECT_VER := 1.55-beta
1111

1212
COMPONENT_ADD_INCLUDEDIRS := components/include
1313

main/eq3_bootwifi.c

+10-1
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@ static int mongoose_serve_log(struct mg_connection *nc){
346346

347347
/* Serve the status page */
348348
static int mongoose_serve_status(struct mg_connection *nc){
349+
uint32_t seconds, minutes, hours, days;
349350
if(sta_configured == false){
350351
mongoose_serve_content(nc, (char *)apstatus, true);
351352
nc->flags |= MG_F_SEND_AND_CLOSE;
@@ -364,8 +365,16 @@ static int mongoose_serve_status(struct mg_connection *nc){
364365
sprintf(status, "not connected");
365366
break;
366367
}
368+
seconds = (uint32_t)(esp_timer_get_time() / 1000000);
369+
minutes = (seconds / 60);
370+
hours = (minutes / 60);
371+
days = (hours / 24);
372+
seconds %= 60;
373+
minutes %= 60;
374+
hours %= 24;
375+
367376
char *htmlstr = malloc(strlen(connectedstatus) + strlen(connectionInfo.mqtturl) + strlen(connectionInfo.mqttuser) + strlen(connectionInfo.mqttpass) + strlen(connectionInfo.mqttid) + 15);
368-
sprintf(htmlstr, connectedstatus, connectionInfo.mqtturl, connectionInfo.mqttuser, connectionInfo.mqttpass, connectionInfo.mqttid, status);
377+
sprintf(htmlstr, connectedstatus, connectionInfo.mqtturl, connectionInfo.mqttid, status, days, hours, minutes, seconds);
369378
mongoose_serve_content(nc, htmlstr, true);
370379
free(htmlstr);
371380
nc->flags |= MG_F_SEND_AND_CLOSE;

main/eq3_htmlpages.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,9 @@ const char connectedstatus[] = "<title>EQ3 status</title> \
8181
<div style='text-align:center;'><h1>EQ3 relay status</h1></div> \
8282
<table style=\"margin:1em auto;\"> \
8383
<tr><td>MQTT URL:</td><td>%s</td></tr> \
84-
<tr><td>MQTT user:</td><td>%s</td></tr> \
85-
<tr><td>MQTT pass:</td><td>%s</td></tr> \
8684
<tr><td>MQTT ID:</td><td>%s</td></tr> \
8785
<tr><td>MQTT status:</td><td>%s</td></tr> \
86+
<tr><td>Uptime:</td><td>%01d days %02d:%02d:%02d</td></tr> \
8887
</table>";
8988

9089
const char apstatus[] = "<title>Please configure me</title> \

main/eq3_main.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define EQ3_MAIN_H
33

44
#define EQ3_MAJVER "1"
5-
#define EQ3_MINVER "51"
5+
#define EQ3_MINVER "55"
66
#define EQ3_EXTRAVER "-beta"
77

88
void eq3_log_init(void);

main/eq3_wifi.c

+4
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@ int connect_server(char *url, char *user, char *password, char *id){
216216
return -1;
217217
}
218218

219+
/* Only submit the password if the username is set */
220+
if(user == NULL)
221+
password = NULL;
222+
219223
snprintf(lwt_topic_buff, LWT_TOPIC_LEN, "/%sradout", id);
220224
snprintf(intopicbase, IN_TOPIC_LEN, "/%sradin", id);
221225
snprintf(outtopicbase, OUT_TOPIC_LEN, "/%sradout", id);

0 commit comments

Comments
 (0)