platformio.ini 1.1 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. ;board = m5stack-core-esp32
  18. framework = espidf
  19. ;board_build.partitions = partitions_singleapp.csv
  20. board_build.partitions = partitions.csv
  21. lib_deps =
  22. jomjol_configfile
  23. jomjol_helper
  24. jomjol_wlan
  25. jomjol_image_proc
  26. jomjol_controlcamera
  27. jomjol_flowcontroll
  28. jomjol_tfliteclass
  29. tflite-lib
  30. jomjol_fileserver_ota
  31. jomjol_time_sntp
  32. jomjol_logfile
  33. jomjol_mqtt
  34. jomjol_influxdb
  35. jomjol_controlGPIO
  36. monitor_speed = 115200
  37. monitor_rts = 0
  38. monitor_dtr = 0
  39. debug_tool = esp-prog
  40. ; Enable and adapt for logging over USB
  41. ;upload_port = /dev/ttyUSB0