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