1234567891011121314151617181920212223 |
- ; 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
-
- ; 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
|