Skip to content

Commit

Permalink
v1.2.25
Browse files Browse the repository at this point in the history
- added `color-light-d1-mini` build target
  • Loading branch information
genemars committed Jun 23, 2024
1 parent a2522f2 commit ca976fd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 29 deletions.
7 changes: 0 additions & 7 deletions examples/ir-transceiver/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,3 @@
#endif

#define CONFIG_IR_MODULE_ADDRESS "IR"

#ifdef MINI_ESP32

#define CONFIG_IRTransmitterPin 22
#define CONFIG_IRReceiverPin 21

#endif
7 changes: 0 additions & 7 deletions examples/rf-transceiver/configuration.h
Original file line number Diff line number Diff line change
@@ -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
7 changes: 0 additions & 7 deletions examples/x10-transceiver/configuration.h
Original file line number Diff line number Diff line change
@@ -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
19 changes: 12 additions & 7 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,6 @@ lib_deps = ${env.lib_deps}
lib_ignore =
LovyanGFX

[env:smart-sensor-d1-mini-esp32]
platform = [email protected]
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 = +<src> -<src/main.cpp> +<examples/smart-sensor>
lib_deps = ${env:smart-sensor.lib_deps}

[env:smart-sensor-d1-mini]
platform = [email protected]
board = d1_mini
Expand Down Expand Up @@ -237,6 +230,18 @@ build_src_filter = +<src> -<src/main.cpp> +<examples/color-light>
lib_deps = ${env.lib_deps}
https://github.com/adafruit/Adafruit_NeoPixel#1.12.0

[env:color-light-d1-mini]
platform = [email protected]
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 = [email protected]
board = esp32-c3-devkitc-02
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down

0 comments on commit ca976fd

Please sign in to comment.