-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
34 lines (32 loc) · 898 Bytes
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
; 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
[libraries]
json = ArduinoJson@6.18.3
ble = https://github.com/h2zero/NimBLE-Arduino.git#1.3.8
theengs = TheengsDecoder@1.7.8
ntp = NTPClient@^3.2.1
qr = ESP32QRCodeReader
[env:esp32cam]
platform = espressif32@6.4.0
board = esp32cam
framework = arduino
; monitor flags
monitor_speed = 115200
monitor_dtr = 1
monitor_rts = 0
; build flags
build_flags = -D READ_WIFI_QR_CODE ; flag to add support for QR codes
; dependencies
lib_deps =
${libraries.json}
${libraries.ble}
${libraries.theengs}
${libraries.ntp}
${libraries.qr}