Skip to content

Commit bae12ad

Browse files
committed
Fixed that issue with invalid pointer. It turned out that just need to copy the data
1 parent 1552462 commit bae12ad

9 files changed

+115
-20
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.idea
12
.pio
23
.vscode/.browse.c_cpp.db*
34
.vscode/c_cpp_properties.json

platformio.ini

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ board = nodemcuv2
1414
board_build.filesystem = littlefs
1515
framework = arduino
1616
monitor_speed = 115200
17+
monitor_filters = esp8266_exception_decoder
18+
build_type = debug
1719
lib_deps =
1820
me-no-dev/ESP Async WebServer@^1.2.3
1921
me-no-dev/ESPAsyncTCP@^1.2.2

src/main.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
#include "metrics.h"
88

99
Settings settings;
10-
UI ui{80, &settings};
1110
Temp temp{20};
1211
Heater heater{&settings, &temp};
1312
WiFiNetwork wifi{&settings};
13+
UI ui{80, &settings, &temp, &heater, &wifi};
1414
Metrics metrics{&settings, &temp, &heater};
1515

1616
void setup()
1717
{
1818
Serial.begin(115200);
19+
delay(1000);
1920
LittleFS.begin();
2021
settings.read();
2122
configTzTime("CET-1CEST", "pool.ntp.org", "time.nis.gov");

src/metrics.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ void Metrics::send()
2727
pointDevice.addField("two_sensor_avg_temp", _temp->getAvgTemp());
2828
pointDevice.addField("sht_humidity", _temp->getShtHumidity());
2929
pointDevice.addField("heating", _heater->heating());
30+
pointDevice.addField("threshold", _settings->temperatureThreshold());
3031

3132
_client->writePoint(pointDevice);
3233
}

src/settings.cpp

+9-8
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ bool Settings::read()
3535
return false;
3636
}
3737

38-
_ssid = doc[WIFI_SSID_KEY];
39-
_password = doc[WIFI_PASSWORD_KEY];
40-
_influxdbUrl = doc[INFLUXDB_URL_KEY];
41-
_influxdbDatabaseName = doc[INFLUXDB_DATABASE_NAME_KEY];
38+
_ssid = strdup(doc[WIFI_SSID_KEY]);
39+
_password = strdup(doc[WIFI_PASSWORD_KEY]);
40+
_influxdbUrl = strdup(doc[INFLUXDB_URL_KEY]);
41+
_influxdbDatabaseName = strdup(doc[INFLUXDB_DATABASE_NAME_KEY]);
42+
4243
_temperatureThreshold = doc[TEMPERATURE_THRESHOLD];
4344
_heaterEnabled = doc[HEATER_ENABLED];
4445

@@ -73,7 +74,7 @@ const char *Settings::ssid()
7374

7475
void Settings::setSsid(const char *ssid)
7576
{
76-
_ssid = ssid;
77+
_ssid = strdup(ssid);
7778
}
7879

7980
const char *Settings::password()
@@ -83,7 +84,7 @@ const char *Settings::password()
8384

8485
void Settings::setPassword(const char *password)
8586
{
86-
_password = password;
87+
_password = strdup(password);
8788
}
8889

8990
const char *Settings::influxdbUrl()
@@ -93,7 +94,7 @@ const char *Settings::influxdbUrl()
9394

9495
void Settings::setInfluxdbUrl(const char *influxdbUrl)
9596
{
96-
_influxdbUrl = influxdbUrl;
97+
_influxdbUrl = strdup(influxdbUrl);
9798
}
9899

99100
const char *Settings::influxdbDatabaseName()
@@ -103,7 +104,7 @@ const char *Settings::influxdbDatabaseName()
103104

104105
void Settings::setInfluxdbDatabaseName(const char *influxdbDatabaseName)
105106
{
106-
_influxdbDatabaseName = influxdbDatabaseName;
107+
_influxdbDatabaseName = strdup(influxdbDatabaseName);
107108
}
108109

109110
float Settings::temperatureThreshold()

src/ui.cpp

+42-5
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@
55
#include <ESPAsyncWebServer.h>
66
#include "AsyncJson.h"
77
#include "ArduinoJson.h"
8-
#include "settings.h"
8+
#include <Ticker.h>
9+
#include "functional"
910

10-
UI::UI(int port, Settings *settings) : _server(port) {
11+
UI::UI(int port, Settings *settings, Temp *temp, Heater *heater, WiFiNetwork *wifiNetwork) : _server(port)
12+
{
1113
_settings = settings;
14+
_temp = temp;
15+
_heater = heater;
16+
_wifiNetwork = wifiNetwork;
1217
}
1318

1419
void UI::begin()
@@ -28,23 +33,55 @@ void UI::begin()
2833
doc["ssid"] = _settings->ssid();
2934
doc["influxdb_url"] = _settings->influxdbUrl();
3035
doc["influxdb_db_name"] = _settings->influxdbDatabaseName();
36+
doc["heater_enabled"] = _settings->heaterEnabled();
3137

3238
serializeJson(doc, *response);
3339

3440
request->send(response);
3541
});
3642

43+
_server.on(
44+
"/settings", HTTP_POST, [](AsyncWebServerRequest *request) {}, NULL,
45+
[&](AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total) {
46+
DynamicJsonDocument doc(200);
47+
auto error = deserializeJson(doc, ((const char *)data));
48+
49+
if (error)
50+
{
51+
Serial.println("Failed to parse config file");
52+
}
53+
54+
_settings->setSsid(doc["ssid"]);
55+
_settings->setPassword(doc["password"]);
56+
_settings->setInfluxdbUrl(doc["influxdb_url"]);
57+
_settings->setInfluxdbDatabaseName(doc["influxdb_db_name"]);
58+
_settings->setHeaterEnabled(doc["heater_enabled"]);
59+
request->send(200);
60+
// Ticker tick;
61+
// tick.once_ms_scheduled(1, [&]() {
62+
// _wifiNetwork->begin();
63+
// });
64+
});
65+
3766
_server.on("/state", HTTP_GET, [&](AsyncWebServerRequest *request) {
3867
AsyncResponseStream *response = request->beginResponseStream("application/json");
3968
DynamicJsonDocument doc(200);
40-
doc["ssid"] = _settings->ssid();
41-
doc["influxdb_url"] = _settings->influxdbUrl();
42-
doc["influxdb_db_name"] = _settings->influxdbDatabaseName();
69+
doc["heating"] = _heater->heating();
70+
doc["avg_temp"] = _temp->getAvgTemp();
71+
doc["mcp_temp"] = _temp->getMcpTemp();
72+
doc["sht_temp"] = _temp->getShtTemp();
73+
doc["sht_humidity"] = _temp->getShtHumidity();
74+
doc["heater_enabled"] = _settings->heaterEnabled();
4375

4476
serializeJson(doc, *response);
4577

4678
request->send(response);
4779
});
4880

4981
_server.begin();
82+
}
83+
84+
void UI::onSettingsUpdated()
85+
{
86+
_wifiNetwork->begin();
5087
}

src/ui.h

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
#include <ESPAsyncWebServer.h>
22
#include "settings.h"
3+
#include "temp.h"
4+
#include "heater.h"
5+
#include "wifiNetwork.h"
36

47
class UI
58
{
69
public:
7-
UI(int port, Settings *settings);
10+
UI(int port, Settings *settings, Temp *temp, Heater *heater, WiFiNetwork *wifiNetwork);
811
void begin();
912

1013
private:
1114
int _port;
1215
AsyncWebServer _server;
1316
Settings *_settings;
17+
Temp *_temp;
18+
Heater *_heater;
19+
WiFiNetwork *_wifiNetwork;
20+
void onSettingsUpdated();
1421
};

src/wifiNetwork.h

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef WIFI_NETWORK_H
2+
#define WIFI_NETWORK_H
3+
14
#include <Arduino.h>
25
#include "settings.h"
36

@@ -10,4 +13,8 @@ class WiFiNetwork
1013

1114
private:
1215
Settings *_settings;
16+
void connect(const char *ssid, const char *password);
17+
bool softAP;
1318
};
19+
20+
#endif

src/wiifiNetwork.cpp

+43-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,59 @@
11
#include "wifiNetwork.h"
22
#include <ESP8266WiFi.h>
33

4+
const char *_softAPSsid = "thermobox";
5+
const char *_softAPPassword = "thermobox";
6+
47
WiFiNetwork::WiFiNetwork(Settings *settings)
58
{
69
_settings = settings;
710
}
811

912
void WiFiNetwork::begin()
1013
{
11-
WiFi.begin(_settings->ssid(), _settings->password());
12-
while (WiFi.status() != WL_CONNECTED)
14+
connect(_settings->ssid(), _settings->password());
15+
}
16+
17+
void WiFiNetwork::connect(const char *ssid, const char *password)
18+
{
19+
WiFi.disconnect();
20+
WiFi.softAPdisconnect();
21+
if (!ssid || *ssid == 0x00 || strlen(ssid) == 0)
1322
{
14-
delay(1000);
15-
Serial.println("Connecting to WiFi..");
23+
WiFi.softAP(_softAPSsid, _softAPPassword);
24+
Serial.println("Created Soft AP");
25+
softAP = true;
26+
}
27+
else
28+
{
29+
int attempts = 20;
30+
WiFi.begin(ssid, password);
31+
32+
while (WiFi.status() != WL_CONNECTED && attempts >= 0)
33+
{
34+
attempts--;
35+
delay(1000);
36+
Serial.println("Connecting to WiFi..");
37+
}
38+
39+
if (WiFi.status() != WL_CONNECTED)
40+
{
41+
Serial.println("Can't connect to WiFi");
42+
connect(NULL, NULL);
43+
}
44+
else
45+
{
46+
softAP = false;
47+
Serial.println("Connected to WiFi");
48+
}
1649
}
1750
}
1851

19-
String WiFiNetwork::ip() {
52+
String WiFiNetwork::ip()
53+
{
54+
if (softAP)
55+
{
56+
return WiFi.softAPIP().toString();
57+
}
2058
return WiFi.localIP().toString();
2159
}

0 commit comments

Comments
 (0)