-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
39 lines (33 loc) · 1.25 KB
/
platformio.ini
File metadata and controls
39 lines (33 loc) · 1.25 KB
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
;
; 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]
platform = espressif32
framework = arduino, espidf
; General build flags apply to all environments.
build_flags =
-D CONFIG_BLINK_GPIO=16 ; Pin used for the blink example
monitor_speed = 115200 ; Standard baud rate for monitoring
; ----------------------------------------------------
; Specific Environment for Freenove ESP32 WROOM
; ----------------------------------------------------
[env:freenove_wroom]
; 'esp32dev' is the standard, most compatible board definition for generic WROOM modules.
board = esp32dev
upload_port = /dev/ttyUSB* ; The serial port we successfully mapped from the host
monitor_port = /dev/ttyUSB*
; Lib dependencies
lib_deps =
bblanchon/ArduinoJson @ ^7.4.2
knolleary/PubSubClient @ ^2.8
adafruit/DHT sensor library @ ^1.4.6
adafruit/Adafruit GFX Library @ ^1.12.3
adafruit/Adafruit ST7735 and ST7789 Library @ ^1.11.0
zinggjm/GxEPD2 @ ^1.6.5
;