-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
39 lines (32 loc) · 812 Bytes
/
platformio.ini
File metadata and controls
39 lines (32 loc) · 812 Bytes
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
35
36
37
38
39
; PlatformIO Project Configuration File
; ESP32 Starter Template
; https://platformio.org
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
; Serial Monitor settings
monitor_speed = 115200
; Upload settings
upload_speed = 115200
upload_port = /dev/ttyUSB0
; Board settings
board_build.flash_mode = dio
board_build.f_cpu = 240000000L
; Libraries
lib_deps = adafruit/DHT sensor library@^1.4.6
; Optional: Uncomment for different ESP32 boards
; [env:esp32s3]
; platform = espressif32
; board = esp32-s3-devkitc-1
; framework = arduino
; monitor_speed = 115200
; upload_speed = 921600
; upload_port = /dev/ttyUSB0
; [env:esp32c3]
; platform = espressif32
; board = esp32-c3-devkitm-1
; framework = arduino
; monitor_speed = 115200
; upload_speed = 921600
; upload_port = /dev/ttyUSB0