platformio.ini 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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@5.2.0
  14. board = esp32cam
  15. ;board = m5stack-core-esp32
  16. framework = espidf
  17. ;Add macro definition ENABLE_MQTT, ENABLE_INFLUXDB
  18. build_flags = -D ENABLE_MQTT -D ENABLE_INFLUXDB
  19. ;board_build.partitions = partitions_singleapp.csv
  20. board_build.partitions = partitions.csv
  21. ;lib_deps not needed
  22. ;lib_deps =
  23. ; jomjol_configfile
  24. ; jomjol_helper
  25. ; jomjol_wlan
  26. ; jomjol_image_proc
  27. ; jomjol_controlcamera
  28. ; jomjol_flowcontroll
  29. ; jomjol_tfliteclass
  30. ; tflite-lib
  31. ; jomjol_fileserver_ota
  32. ; jomjol_time_sntp
  33. ; jomjol_logfile
  34. ; jomjol_mqtt
  35. ; jomjol_influxdb
  36. ; jomjol_controlGPIO
  37. monitor_speed = 115200
  38. monitor_rts = 0
  39. monitor_dtr = 0
  40. debug_tool = esp-prog
  41. ; Enable and adapt for logging over USB
  42. ;upload_port = /dev/ttyUSB0