ESP8266 Treppenlichtsteuerung mit OTA zum Firmware Upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

platformio.ini 810B

123456789101112131415161718192021222324252627282930
  1. ; PlatformIO Project Configuration File
  2. ;
  3. ; Build options: build flags, source filter
  4. ; Upload options: custom upload port, speed and extra flags
  5. ; Library options: dependencies, extra library storages
  6. ; Advanced options: extra scripting
  7. ;
  8. ; Please visit documentation for the other options and examples
  9. ; https://docs.platformio.org/page/projectconf.html
  10. [env:esp01_1m]
  11. platform = espressif8266
  12. board = esp01_1m
  13. framework = arduino
  14. monitor_speed = 115200
  15. extra_scripts = pre:extra_script.py
  16. ; stuff for OTA
  17. ; https://docs.platformio.org/en/latest/platforms/espressif8266.html#over-the-air-ota-update
  18. upload_protocol = espota
  19. upload_port = 192.168.10.94
  20. upload_flags =
  21. --port=8266
  22. --auth=admin
  23. lib_deps =
  24. # The exact version
  25. ottowinter/PCA9685 16-Channel PWM Driver Module Library @ 1.2.9