Commit 478c4896 authored by Eric Duminil's avatar Eric Duminil
Browse files

Done

parent 40c139a8
Pipeline #5774 passed with stage
in 2 minutes and 15 seconds
...@@ -14,8 +14,6 @@ ...@@ -14,8 +14,6 @@
#include <IotWebConf.h> #include <IotWebConf.h>
#include <IotWebConfOptionalGroup.h> #include <IotWebConfOptionalGroup.h>
//TODO: Is there any conflict with SPIFFS/LittleFS?
//TODO: Actually use those parameters
//TODO: Check memory consumption. Disable DEBUG info? //TODO: Check memory consumption. Disable DEBUG info?
//TODO: Convert all strings to F-strings //TODO: Convert all strings to F-strings
...@@ -45,9 +43,8 @@ namespace web_config { ...@@ -45,9 +43,8 @@ namespace web_config {
/** /**
* CO2 sensor * CO2 sensor
*/ */
ParameterGroup co2Params = ParameterGroup("co2", "CO2 Sensor"); //TODO: Conflict with labels? ParameterGroup co2Params = ParameterGroup("co2", "CO2 Sensor");
//TODO: UIntTParameter?
IntTParameter<uint16_t> timestepParam = IntTParameter<uint16_t> timestepParam =
Builder<IntTParameter<uint16_t>>("timestep").label("Measurement timestep").defaultValue(MEASUREMENT_TIMESTEP).min( Builder<IntTParameter<uint16_t>>("timestep").label("Measurement timestep").defaultValue(MEASUREMENT_TIMESTEP).min(
2).max(1800).placeholder("[s]").build(); 2).max(1800).placeholder("[s]").build();
...@@ -250,10 +247,8 @@ namespace web_config { ...@@ -250,10 +247,8 @@ namespace web_config {
//TODO: Add default values for SSID/password //TODO: Add default values for SSID/password
//TODO: Add other params //TODO: Add other params
//TODO: Use HTTP_USER / HTTP_PASSWORD for config //TODO: Use HTTP_USER / HTTP_PASSWORD for config
//TODO: Move to own class
//TODO: Remove AP Password config? //TODO: Remove AP Password config?
//TODO: Save LoRaWAN key if possible? //TODO: Save LoRaWAN key if possible?
//FIXME: Why does MQTT fail? (on ESP32)
iotWebConf->init(); iotWebConf->init();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment