-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplatformio.ini
27 lines (25 loc) · 909 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
; 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]
build_src_flags =
-D SERIAL_DISABLE=1 ; remove to enable serial on tx/rx pins
-D USE_WHEEL_ENCODERS=1 ; remove to turn off use of wheel encoders
; you may need to do this to use serial port
-D USE_ENCODER_INTERRUPTS=1 ; remoe to using polling of encoder pins
-D ENABLE_CAMERA=1 ; remove to disable camera code
-include Arduino.h
[env:esp32cam]
platform = espressif32
board = esp32cam
framework = arduino
monitor_speed = 115200
lib_deps =
ESP Async WebServer
WebSockets