This commit is contained in:
DTTerastar 2023-03-04 16:03:29 -05:00
parent a30fb7818a
commit 36398c2078
3 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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();

View File

@ -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"