diff --git a/examples/ir-transceiver/configuration.h b/examples/ir-transceiver/configuration.h index 6f9c043..559fb67 100644 --- a/examples/ir-transceiver/configuration.h +++ b/examples/ir-transceiver/configuration.h @@ -8,10 +8,3 @@ #endif #define CONFIG_IR_MODULE_ADDRESS "IR" - -#ifdef MINI_ESP32 - -#define CONFIG_IRTransmitterPin 22 -#define CONFIG_IRReceiverPin 21 - -#endif diff --git a/examples/rf-transceiver/configuration.h b/examples/rf-transceiver/configuration.h index d319b55..c14ae4a 100644 --- a/examples/rf-transceiver/configuration.h +++ b/examples/rf-transceiver/configuration.h @@ -1,10 +1,3 @@ #define CONFIG_RCSwitchReceiverPin 5 #define CONFIG_RCSwitchTransmitterPin 6 #define CONFIG_RCSwitchRF_MODULE_ADDRESS "RF" - -#ifdef MINI_ESP32 - -#define CONFIG_RCSwitchReceiverPin 22 -#define CONFIG_RCSwitchTransmitterPin 21 - -#endif diff --git a/examples/x10-transceiver/configuration.h b/examples/x10-transceiver/configuration.h index 4b0e8aa..6c30aa9 100644 --- a/examples/x10-transceiver/configuration.h +++ b/examples/x10-transceiver/configuration.h @@ -1,10 +1,3 @@ #define CONFIG_X10RFReceiverPin 5 #define CONFIG_X10RFTransmitterPin 6 #define CONFIG_X10RF_MODULE_ADDRESS "RF" - -#ifdef MINI_ESP32 - -#define CONFIG_X10RFReceiverPin 22 -#define CONFIG_X10RFTransmitterPin 21 - -#endif diff --git a/platformio.ini b/platformio.ini index 57f3ce6..578a04d 100644 --- a/platformio.ini +++ b/platformio.ini @@ -93,13 +93,6 @@ lib_deps = ${env.lib_deps} lib_ignore = LovyanGFX -[env:smart-sensor-d1-mini-esp32] -platform = espressif32@6.7.0 -build_flags = ${env.build_flags} -I examples -I src -D MINI_ESP32 -D DISABLE_UI - -D DEFAULT_CONFIG='{"sys_bt_pin":"16","sys_sl_pin":"26","soth-typ":"ds18b20","soth-pin":"17","ligh-typ":"ldr","ligh-pin":"36"}' -build_src_filter = + - + -lib_deps = ${env:smart-sensor.lib_deps} - [env:smart-sensor-d1-mini] platform = espressif8266@2.6.3 board = d1_mini @@ -237,6 +230,18 @@ build_src_filter = + - + lib_deps = ${env.lib_deps} https://github.com/adafruit/Adafruit_NeoPixel#1.12.0 +[env:color-light-d1-mini] +platform = espressif8266@2.6.3 +board = d1_mini +build_flags = ${env.build_flags} -I examples -I src -D DISABLE_UI -D DISABLE_AUTOMATION +lib_deps = ${env.lib_deps_8266} + ${env.lib_deps} + https://github.com/adafruit/Adafruit_NeoPixel#1.12.0 +lib_ignore = + ESP32Time + ESP32_BleSerial + LovyanGFX + [env:color-light-c3] platform = espressif32@6.7.0 board = esp32-c3-devkitc-02 diff --git a/src/version.h b/src/version.h index 6e5eeba..6546b01 100644 --- a/src/version.h +++ b/src/version.h @@ -29,7 +29,7 @@ #define VERSION_MAJOR 1 #define VERSION_MINOR 2 -#define VERSION_PATCH 24 +#define VERSION_PATCH 25 #define STRING_VALUE(...) STRING_VALUE__(__VA_ARGS__) #define STRING_VALUE__(...) #__VA_ARGS__