platformio.ini 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. [platformio]
  11. src_dir = main
  12. [env:esp32cam]
  13. platform = espressif32@4.4.0
  14. ;platform = espressif32@5.1.0
  15. ;platform = espressif32
  16. board = esp32cam
  17. framework = espidf
  18. ;board_build.partitions = partitions_singleapp.csv
  19. board_build.partitions = partitions.csv
  20. lib_deps =
  21. jomjol_configfile
  22. jomjol_helper
  23. jomjol_wlan
  24. jomjol_image_proc
  25. jomjol_controlcamera
  26. jomjol_flowcontroll
  27. jomjol_tfliteclass
  28. tflite-lib
  29. jomjol_fileserver_ota
  30. jomjol_time_sntp
  31. jomjol_logfile
  32. jomjol_mqtt
  33. jomjol_influxdb
  34. jomjol_controlGPIO
  35. monitor_speed = 115200
  36. monitor_rts = 0
  37. monitor_dtr = 0
  38. debug_tool = esp-prog
  39. ; Enable and adapt for logging over USB
  40. ;upload_port = /dev/ttyUSB0