#
|
|
# Project Configuration File
|
|
#
|
|
# A detailed documentation with the EXAMPLES is located here:
|
|
# http://docs.platformio.org/en/latest/projectconf.html
|
|
#
|
|
|
|
# A sign `#` at the beginning of the line indicates a comment
|
|
# Comment lines are ignored.
|
|
|
|
# Simple and base environment
|
|
# [env:mybaseenv]
|
|
# platform = %INSTALLED_PLATFORM_NAME_HERE%
|
|
# framework =
|
|
# board =
|
|
#
|
|
# Automatic targets - enable auto-uploading
|
|
# targets = upload
|
|
|
|
[platformio]
|
|
#env_default = wire
|
|
|
|
[env:wire]
|
|
platform = espressif
|
|
framework = arduino
|
|
board = esp01_1m
|
|
lib_install = 89
|
|
|
|
[env:node]
|
|
platform = espressif
|
|
framework = arduino
|
|
board = nodemcuv2
|
|
lib_install = 89
|
|
|
|
[env:ota]
|
|
platform = espressif
|
|
framework = arduino
|
|
board = esp01_1m
|
|
lib_install = 89
|
|
upload_speed = 115200
|
|
upload_port = "192.168.1.109"
|
|
upload_flags = --auth=fibonacci --port 8266
|