Skip to content

Commit dd46d17

Browse files
committed
Fix offset command, add offset to web gui, add dhcp hostname
1 parent e9d24b6 commit dd46d17

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

main/eq3_bootwifi.c

+10-4
Original file line numberDiff line numberDiff line change
@@ -904,21 +904,27 @@ static void saveConnectionInfo(connection_info_t *pConnectionInfo) {
904904
* Become a station connecting to an existing access point.
905905
*/
906906
static void becomeStation(connection_info_t *pConnectionInfo) {
907-
ESP_LOGD(tag, "- Connecting to access point \"%s\" ...", pConnectionInfo->ssid);
907+
ESP_LOGI(tag, "- Connecting to access point \"%s\" ...", pConnectionInfo->ssid);
908908
assert(strlen(pConnectionInfo->ssid) > 0);
909909

910910
/* If this is a retry don't re-initialise sta mode */
911911
if(sta_configured == false){
912912
ESP_ERROR_CHECK(esp_wifi_stop());
913913
// If we have a static IP address information, use that.
914914
if (pConnectionInfo->ipInfo.ip.addr != 0) {
915-
ESP_LOGD(tag, " - using a static IP address of " IPSTR, IP2STR(&pConnectionInfo->ipInfo.ip));
915+
ESP_LOGI(tag, " - using a static IP address of " IPSTR, IP2STR(&pConnectionInfo->ipInfo.ip));
916916
tcpip_adapter_dhcpc_stop(TCPIP_ADAPTER_IF_STA);
917917
tcpip_adapter_set_ip_info(TCPIP_ADAPTER_IF_STA, &pConnectionInfo->ipInfo);
918918
} else {
919919
tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA);
920920
}
921-
921+
if(strlen(pConnectionInfo->mqttid) == 0){
922+
tcpip_adapter_set_hostname(TCPIP_ADAPTER_IF_STA, "EQ3-heatcontroller");
923+
ESP_LOGI(tag, "Hostname EQ3-heatcontroller");
924+
}else{
925+
tcpip_adapter_set_hostname(TCPIP_ADAPTER_IF_STA, pConnectionInfo->mqttid);
926+
ESP_LOGI(tag, "Hostname %s", pConnectionInfo->mqttid);
927+
}
922928
ESP_ERROR_CHECK( esp_wifi_set_mode(WIFI_MODE_STA));
923929
wifi_config_t sta_config;
924930
memset(&sta_config, 0, sizeof(wifi_config_t));
@@ -939,7 +945,7 @@ static void becomeStation(connection_info_t *pConnectionInfo) {
939945
* Become an access point.
940946
*/
941947
static void becomeAccessPoint() {
942-
ESP_LOGD(tag, "- Starting being an access point ...");
948+
ESP_LOGI(tag, "- Starting being an access point ...");
943949
// We don't have connection info so be an access point!
944950
ESP_ERROR_CHECK(esp_wifi_stop());
945951
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_AP));

main/eq3_htmlpages.h

+3
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ const char command_post_device[] = "</select></td><td><select name=\"command\">
143143
<option value=\"auto\">auto</option> \
144144
<option value=\"manual\">manual</option> \
145145
<option value=\"settemp\">settemp</option> \
146+
<option value=\"off\">closed (off)</option> \
147+
<option value=\"on\">open (on)</option> \
148+
<option value=\"offset\">offsettemp</option> \
146149
<option value=\"settime\">settime</option> \
147150
</select> \
148151
</td><td><input type=\"text\" name=\"value\"></td></tr> \

main/eq3_main.c

+12-12
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ int handle_request(char *cmdstr){
733733
// Skip any spaces
734734
while(*cmdptr == ' ')
735735
cmdptr++;
736-
if(strncmp((const char *)cmdptr, "settime", 7) == 0){
736+
if(start == false && strncmp((const char *)cmdptr, "settime", 7) == 0){
737737
start = true;
738738

739739
if(cmdptr[8] != 0 && strlen(cmdptr + 8) < 12){
@@ -771,31 +771,31 @@ int handle_request(char *cmdstr){
771771
}
772772
command = EQ3_SETTIME;
773773
}
774-
if(strncmp((const char *)cmdptr, "boost", 5) == 0){
774+
if(start == false && strncmp((const char *)cmdptr, "boost", 5) == 0){
775775
start = true;
776776
command = EQ3_BOOST;
777777
}
778-
if(strncmp((const char *)cmdptr, "unboost", 7) == 0){
778+
if(start == false && strncmp((const char *)cmdptr, "unboost", 7) == 0){
779779
start = true;
780780
command = EQ3_UNBOOST;
781781
}
782-
if(strncmp((const char *)cmdptr, "auto", 4) == 0){
782+
if(start == false && strncmp((const char *)cmdptr, "auto", 4) == 0){
783783
start = true;
784784
command = EQ3_AUTO;
785785
}
786-
if(strncmp((const char *)cmdptr, "manual", 6) == 0){
786+
if(start == false && strncmp((const char *)cmdptr, "manual", 6) == 0){
787787
start = true;
788788
command = EQ3_MANUAL;
789789
}
790-
if(strncmp((const char *)cmdptr, "lock", 4) == 0){
790+
if(start == false && strncmp((const char *)cmdptr, "lock", 4) == 0){
791791
start = true;
792792
command = EQ3_LOCK;
793793
}
794-
if(strncmp((const char *)cmdptr, "unlock", 6) == 0){
794+
if(start == false && strncmp((const char *)cmdptr, "unlock", 6) == 0){
795795
start = true;
796796
command = EQ3_UNLOCK;
797797
}
798-
if(strncmp((const char *)cmdptr, "offset", 6) == 0){
798+
if(start == false && strncmp((const char *)cmdptr, "offset", 6) == 0){
799799
char *endmsg;
800800
float offset = strtof(cmdptr + 7, &endmsg);
801801
if(offset < -3.5 || offset > 3.5){
@@ -810,7 +810,7 @@ int handle_request(char *cmdstr){
810810
command = EQ3_OFFSET;
811811
ESP_LOGI(GATTC_TAG, "set offset val 0x%x\n", cmdparms[0]);
812812
}
813-
if(strncmp((const char *)cmdptr, "settemp", 7) == 0){
813+
if(start == false && strncmp((const char *)cmdptr, "settemp", 7) == 0){
814814
char *endmsg;
815815
float temp = strtof(cmdptr + 8, &endmsg);
816816
int inttemp = (int)temp;
@@ -826,13 +826,13 @@ int handle_request(char *cmdstr){
826826
return -1;
827827
}
828828
}
829-
if(strncmp((const char *)cmdptr, "off", 3) == 0){
829+
if(start == false && strncmp((const char *)cmdptr, "off", 3) == 0){
830830
/* 'Off' is achieved by setting the required temperature to 4.5 */
831831
start = true;
832832
command = EQ3_SETTEMP;
833833
cmdparms[0] = 0x09; /* (4 << 1) | 0x01 */
834834
}
835-
if(strncmp((const char *)cmdptr, "on", 2) == 0){
835+
if(start == false && strncmp((const char *)cmdptr, "on", 2) == 0){
836836
/* 'On' is achieved by setting the required temperature to 30 */
837837
start = true;
838838
command = EQ3_SETTEMP;
@@ -1120,7 +1120,7 @@ void wifidone(int rc){
11201120
time_t now = 0;
11211121
struct tm timeinfo = { 0 };
11221122
int retry = 0;
1123-
const int retry_count = 10;
1123+
const int retry_count = 30;
11241124
while(timeinfo.tm_year < (2019 - 1900) && ++retry < retry_count) {
11251125
ESP_LOGI(GATTC_TAG, "Waiting for system time to be set... (%d/%d)", retry, retry_count);
11261126
vTaskDelay(2000 / portTICK_PERIOD_MS);

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 "49"
5+
#define EQ3_MINVER "51"
66
#define EQ3_EXTRAVER "-beta"
77

88
void eq3_log_init(void);

0 commit comments

Comments
 (0)