-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
27 lines (25 loc) · 948 Bytes
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;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
[env:d1_mini]
platform = espressif8266
board = d1_mini
framework = arduino
build_flags = -D PIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY
; Must force v0.8.1 of the AsyncMqttClient to workaround a Deep Sleep-related bug in 0.8.2
lib_deps =
https://github.com/homieiot/homie-esp8266.git#develop
lib_ignore =
; Must force to the wch* ports on MacOS due to driver issue. See
; https://community.platformio.org/t/mac-usb-port-detected-but-wont-upload/8756/5
upload_port = /dev/cu.wch*
monitor_port = /dev/cu.wch*
monitor_speed = 115200