The esp8266 portion of the project
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.

34 lines
917 B

5 years ago
5 years ago
  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:nodemcuv2]
  11. ; CXXFLAGS = -W -Wall -Wextra -Werror -std=c++11
  12. lib_deps =
  13. ArduinoJson@5.13.4
  14. DallasTemperature
  15. Streaming
  16. WebSockets
  17. OneWire
  18. ArduinoLog
  19. platform = espressif8266
  20. board = nodemcuv2
  21. framework = arduino
  22. upload_speed = 460800
  23. monitor_speed = 115200
  24. board_build.f_cpu = 160000000L
  25. ; upload_port = 192.168.1.103
  26. ; upload_protocol = espota
  27. ; upload_flags =
  28. ; --ip=192.168.1.103
  29. ; --port=8266
  30. ; --auth=esp8266
  31. ; build_flags =
  32. ; -DLC_WIFI_SSID=${sysenv.WIFI_SSID}
  33. ; -DLC_WIFI_PASS=${sysenv.WIFI_PASS}