|
12345678910111213141516171819202122232425262728 |
- ; 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:esp01_1m]
- platform = espressif8266
- board = esp01_1m
- framework = arduino
- monitor_speed = 115200
-
- extra_scripts = pre:extra_script.py
-
- ; stuff for OTA
- ; https://docs.platformio.org/en/latest/platforms/espressif8266.html#over-the-air-ota-update
- upload_protocol = espota
- upload_port = 192.168.10.94
- upload_flags =
- --port=8266
- --auth=admin
-
- lib_deps =
- ottowinter/PCA9685 16-Channel PWM Driver Module Library @ 1.2.9
|