WebKamara/platformio.ini
2024-07-02 21:24:33 +02:00

29 lines
887 B
INI

; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:esp32cam]
platform = espressif32
board = esp32cam
framework = arduino
upload_port = /dev/ttyUSB1
monitor_port = /dev/ttyUSB1
monitor_speed = 115200
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
espressif/esp32-camera @ ^2.0.0
# Accept only backwards compatible bug fixes
# (any version with the same major and minor versions, and an equal or greater patch version)
espressif/esp32-camera @ ~2.0.0
# The exact version
espressif/esp32-camera @ 2.0.0