Misc
This commit is contained in:
parent
a30fb7818a
commit
36398c2078
|
@ -14,6 +14,7 @@ build_cache_dir = ~/.buildcache
|
||||||
extra_configs = platformio_override.ini
|
extra_configs = platformio_override.ini
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
|
lib_ldf_mode = chain
|
||||||
lib_compat_mode = strict
|
lib_compat_mode = strict
|
||||||
check_tool = cppcheck, clangtidy
|
check_tool = cppcheck, clangtidy
|
||||||
check_flags =
|
check_flags =
|
||||||
|
@ -55,6 +56,7 @@ lib_deps =
|
||||||
[esp32]
|
[esp32]
|
||||||
platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.4/platform-espressif32-2.0.4.zip
|
platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.4/platform-espressif32-2.0.4.zip
|
||||||
platform_packages =
|
platform_packages =
|
||||||
|
debug_tool = esp-prog
|
||||||
framework = ${common.framework}
|
framework = ${common.framework}
|
||||||
build_unflags = ${common.build_unflags}
|
build_unflags = ${common.build_unflags}
|
||||||
build_flags = -g
|
build_flags = -g
|
||||||
|
|
|
@ -238,8 +238,8 @@ void setupNetwork() {
|
||||||
Serial.printf("Init Free Mem:%d\n", ESP.getFreeHeap());
|
Serial.printf("Init Free Mem:%d\n", ESP.getFreeHeap());
|
||||||
GUI::SerialReport();
|
GUI::SerialReport();
|
||||||
Motion::SerialReport();
|
Motion::SerialReport();
|
||||||
I2C::SerialReport();
|
|
||||||
#ifdef SENSORS
|
#ifdef SENSORS
|
||||||
|
I2C::SerialReport();
|
||||||
DHT::SerialReport();
|
DHT::SerialReport();
|
||||||
AHTX0::SerialReport();
|
AHTX0::SerialReport();
|
||||||
BH1750::SerialReport();
|
BH1750::SerialReport();
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
#include "GUI.h"
|
#include "GUI.h"
|
||||||
#include "HttpReleaseUpdate.h"
|
#include "HttpReleaseUpdate.h"
|
||||||
#include "HttpWebServer.h"
|
#include "HttpWebServer.h"
|
||||||
#include "I2C.h"
|
|
||||||
#include "Motion.h"
|
#include "Motion.h"
|
||||||
#include "Network.h"
|
#include "Network.h"
|
||||||
#include "SerialImprov.h"
|
#include "SerialImprov.h"
|
||||||
|
@ -31,6 +30,7 @@
|
||||||
#ifdef SENSORS
|
#ifdef SENSORS
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
||||||
|
#include "I2C.h"
|
||||||
#include "BH1750.h"
|
#include "BH1750.h"
|
||||||
#include "BME280.h"
|
#include "BME280.h"
|
||||||
#include "BMP180.h"
|
#include "BMP180.h"
|
||||||
|
|
Loading…
Reference in New Issue