-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
76 lines (69 loc) · 2.39 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
; 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
; Switch for actual board
[platformio]
;default_envs = nodemcu-32s ; Set the default environment
[env]
platform = espressif32 ; Globale Plattform für alle ESP32-Boards
framework = arduino ; Globales Framework
monitor_speed = 115200 ; Globale Baudrate
upload_speed = 921600 ; Globale Upload-Geschwindigkeit
[env:esp32-s3-devkitc-1]
board = esp32-s3-devkitc-1
lib_deps =
bblanchon/ArduinoJson @ 7.2.1
tzapu/WiFiManager @ 2.0.17
me-no-dev/ESP Async WebServer @ 1.2.4
me-no-dev/AsyncTCP @ 1.1.1
z3t0/IRremote @ 4.4.1
h2zero/NimBLE-Arduino @ 1.4.3
tanakamasayuki/EspUsbHost @ 1.0.2
upload_port = /dev/ttyACM0
monitor_port = /dev/ttyACM0
build_flags = -D BOARD_ESP32_DEVKITC
board_build.partitions = esp32-wproom.csv
build_src_filter= -<*> +<esp32/>
[env:nodemcu-32s]
board = nodemcu-32s
lib_deps =
bblanchon/ArduinoJson @ 7.2.1
tzapu/WiFiManager @ 2.0.17
me-no-dev/ESP Async WebServer @ 1.2.4
me-no-dev/AsyncTCP @ 1.1.1
z3t0/IRremote @ 4.4.1
h2zero/NimBLE-Arduino @ 1.4.3
upload_port = /dev/ttyUSB0
monitor_port = /dev/ttyUSB0
build_flags = -D BOARD_ESP32_WPROOM
board_build.partitions = esp32-wproom.csv
build_src_filter= -<*> +<esp32/>
[env:nodemcu-32s-test]
board = nodemcu-32s
upload_port = /dev/ttyUSB0
monitor_port = /dev/ttyUSB0
build_flags = -D BOARD_ESP32_WPROOM
lib_deps =
bblanchon/ArduinoJson @ 7.2.1
;tzapu/WiFiManager @ 2.0.17
me-no-dev/ESP Async WebServer @ 1.2.4
me-no-dev/AsyncTCP @ 1.1.1
;z3t0/IRremote @ 4.4.1
;h2zero/NimBLE-Arduino @ 1.4.3
;ESP32 BLE Arduino
;arduino-libraries/ArduinoBLE
board_build.partitions = esp32-wproom.csv
build_src_filter= -<*> +<esp32-test/>
; Additional comments and instructions
; sudo modprobe cp210x ; für ESP32 C3
; sudo modprobe ch341 ; für ESP32-WPROOM
; usbipd.exe list
; usbipd.exe bind -b 1-2
; usbipd.exe attach --wsl --busid 1-2
; https://arduino-irremote.github.io/Arduino-IRremote/group__Receiving.html und https://github.com/Arduino-IRremote/Arduino-IRremote/