-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
55 lines (45 loc) · 1.8 KB
/
platformio.ini
File metadata and controls
55 lines (45 loc) · 1.8 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
; ESP32-WROOM-32UE-N4
[env:esp32]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/platform-espressif32.zip
board = esp32dev
framework = arduino
;build_type = debug
upload_speed = 921600
monitor_speed = 115200
board_build.f_cpu = 240000000L
board_build.flash_mode = qio
board_upload.flash_size = 4MB ; board_build.flash_size does not work
board_build.f_flash = 80000000L
board_build.partitions = partitions.csv
board_build.filesystem = littlefs
; comment this block for the first USB cable upload
upload_protocol = espota
upload_port = 192.168.0.35 ; use your ESP32 IP address here
upload_flags =
--port=3232
--auth=supersecret ; use your OTA password here
build_flags =
-D CORE_DEBUG_LEVEL=0 ; 0=None, 1=Error, 2=Warn, 3=Info, 4=Debug, 5=Verbose
-D CONFIG_ARDUINO_ISR_IRAM=1
-D MAX_KEYBOARD_BUTTONS=3
-D USE_WIFI_LOGGER
;-D USE_SERIAL_LOGGER ; uncomment this if you want serial debuging messages
lib_deps =
ESP32Async/AsyncTCP @ ^3.4.7
ESP32Async/ESPAsyncWebServer @ ^3.8.0
https://github.com/sparkfun/SparkFun_VEML7700_Arduino_Library.git @ ^2.0.1
; --- for GitHub Users ---
;https://github.com/MarusGradinaru/Default-OTA.git
;https://github.com/MarusGradinaru/Smart-Logger.git
;https://github.com/MarusGradinaru/I2C-Devices.git
;https://github.com/MarusGradinaru/Lazy-Settings.git
;https://github.com/MarusGradinaru/Gpio-Keyboard.git
;https://github.com/MarusGradinaru/Data-Utils.git
lib_extra_dirs =
; --- for Developer ---
d:\Electro-Proj\ESP32-Personal-Library\DefaultOTA
d:\Electro-Proj\ESP32-Personal-Library\SmartLogger
d:\Electro-Proj\ESP32-Personal-Library\I2CDevices
d:\Electro-Proj\ESP32-Personal-Library\LazySettings
d:\Electro-Proj\ESP32-Personal-Library\GpioKeyboard
d:\Electro-Proj\ESP32-Personal-Library\DataUtils