esp32_ethernet_milight_hub/platformio.ini

51 lines
1.3 KiB
INI
Raw Normal View History

2021-01-15 22:49:01 +01:00
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
2021-01-16 02:27:03 +01:00
[common]
2021-01-15 22:49:01 +01:00
framework = arduino
2021-01-16 02:27:03 +01:00
platform = espressif8266@~1.8
board_f_cpu = 160000000L
lib_deps_builtin =
lib_deps_external =
luc-github/ESP32SSDP@^1.1.1
2021-01-15 22:49:01 +01:00
RF24@~1.3.2
2021-01-16 02:27:03 +01:00
ArduinoJson@~6.17.2
PubSubClient@~2.8
2021-01-15 22:49:01 +01:00
https://github.com/ratkins/RGBConverter.git#07010f2
2021-01-16 02:27:03 +01:00
WebSockets@~2.3.3
rlogiacco/CircularBuffer@~1.3.3
2021-01-15 22:49:01 +01:00
PathVariableHandlers@~2.0.0
RichHttpServer@~2.0.2
extra_scripts =
pre:.build_web.py
test_ignore = remote
2021-01-16 02:27:03 +01:00
upload_speed = 460800
2021-01-15 22:49:01 +01:00
build_flags =
!python3 .get_version.py
-D USING_AXTLS
-D MQTT_MAX_PACKET_SIZE=360
-D HTTP_UPLOAD_BUFLEN=128
-D FIRMWARE_NAME=milight-hub
-D RICH_HTTP_REQUEST_BUFFER_SIZE=2048
-D RICH_HTTP_RESPONSE_BUFFER_SIZE=2048
-Idist -Ilib/DataStructures
2021-01-16 02:27:03 +01:00
[env:esp32-poe]
platform = espressif32
framework = ${common.framework}
upload_speed = ${common.upload_speed}
board = esp32-poe
build_flags = ${common.build_flags}
extra_scripts = ${common.extra_scripts}
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
test_ignore = ${common.test_ignore}