-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
22 lines (21 loc) · 939 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
; 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
; http://docs.platformio.org/page/projectconf.html
[env:esp01_1m]
platform = espressif8266
board = esp01_1m
board_build.flash_mode = dout
framework = arduino
lib_deps = MQTT
;, WiFiManager (can be integrated, if https://github.com/tzapu/WiFiManager/pull/827 is merged)
upload_port = esp_134ed9.lan ; needs to be adapted for your configuration
upload_flags = --auth=ArduinoOTA1265369 ; needs to be adapted for your configuration
; no 4K heap for WPS: -D NO_EXTRA_4K_HEAP
; see also https://github.com/platformio/platform-espressif8266/issues/105
build_flags = -Wall -Werror -D NO_EXTRA_4K_HEAP