Commit b42ee565 authored by Eric Duminil's avatar Eric Duminil
Browse files

Include IotWebConf in src/lib

parent 8c4fc341
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
#define IotWebConf_h #define IotWebConf_h
#include <Arduino.h> #include <Arduino.h>
#include <IotWebConfParameter.h> #include "IotWebConfParameter.h"
#include <IotWebConfSettings.h> #include "IotWebConfSettings.h"
#include <IotWebConfWebServerWrapper.h> #include "IotWebConfWebServerWrapper.h"
#ifdef ESP8266 #ifdef ESP8266
# include <ESP8266WiFi.h> # include <ESP8266WiFi.h>
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* of the MIT license. See the LICENSE file for details. * of the MIT license. See the LICENSE file for details.
*/ */
#include <IotWebConfParameter.h> #include "IotWebConfParameter.h"
namespace iotwebconf namespace iotwebconf
{ {
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
#include <Arduino.h> #include <Arduino.h>
#include <functional> #include <functional>
#include <IotWebConfSettings.h> #include "IotWebConfSettings.h"
#include <IotWebConfWebServerWrapper.h> #include "IotWebConfWebServerWrapper.h"
#ifdef IOTWEBCONF_ENABLE_JSON #ifdef IOTWEBCONF_ENABLE_JSON
# include <ArduinoJson.h> # include <ArduinoJson.h>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
// TODO: This file is a mess. Help wanted to organize thing! // TODO: This file is a mess. Help wanted to organize thing!
#include <IotWebConfParameter.h> #include "IotWebConfParameter.h"
#include <Arduino.h> #include <Arduino.h>
#include <IPAddress.h> #include <IPAddress.h>
#include <errno.h> #include <errno.h>
...@@ -946,6 +946,6 @@ protected: ...@@ -946,6 +946,6 @@ protected:
} // end namespace } // end namespace
#include <IotWebConfTParameterBuilder.h> #include "IotWebConfTParameterBuilder.h"
#endif #endif
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#ifndef IotWebConfTParameterBuilder_h #ifndef IotWebConfTParameterBuilder_h
#define IotWebConfTParameterBuilder_h #define IotWebConfTParameterBuilder_h
#include <IotWebConfTParameter.h> #include "IotWebConfTParameter.h"
namespace iotwebconf namespace iotwebconf
{ {
......
...@@ -11,9 +11,9 @@ ...@@ -11,9 +11,9 @@
#include "util.h" #include "util.h"
#include "sensor_console.h" #include "sensor_console.h"
#include <IotWebConf.h> #include "src/lib/IotWebConf/src/IotWebConf.h"
#include <IotWebConfTParameter.h> #include "src/lib/IotWebConf/src/IotWebConfTParameter.h"
#include <IotWebConfOptionalGroup.h> #include "src/lib/IotWebConf/src/IotWebConfOptionalGroup.h"
//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
......
Markdown is supported
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