-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
78 lines (68 loc) · 1.8 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
77
78
; 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
[platformio]
name = ESP32-S3 with 0.42 OLED
description = factory firmware
boards_dir = ./boards
src_dir = .
[env]
framework = arduino
monitor_speed = 57600
#lib_ldf_mode = chain+
lib_deps =
Wire
plerup/EspSoftwareSerial@^8.0.3
contrem/arduino-timer@^3.0.0
fastled/FastLED@^3.5.0
openciag/BlueFairy@^1.0.0
electroniccats/MPU6050@^1.0.0
[env:d1_mini]
platform = espressif8266
board = d1_mini
upload_protocol = esptool
extra_scripts = erase_before_upload.py
[env:d1_mini_ota]
platform = espressif8266
board = d1_mini
upload_protocol = espota
upload_flags = --port=8266
upload_port = 10.0.0.1
[env:esp32-s3-042oled]
platform = espressif32
board = esp32-s3-0.42oled
upload_protocol = esptool
#extra_scripts = erase_before_upload.py
[env:esp32-s3-042oled_ota]
platform = espressif32
board = esp32-s3-0.42oled
upload_protocol = espota
upload_port = 10.0.0.1
upload_flags = --port=8266
[env:esp32-c3-042oled]
platform = espressif32
board = esp32-c3-0.42oled
upload_protocol = esptool
#extra_scripts = erase_before_upload.py
[env:esp32-c3-042oled_ota]
extends = esp32-c3-042oled
upload_protocol = espota
upload_port = 10.0.0.1
upload_flags = --port=8266
[env:esp32-az-delivery-devkit-v4]
platform = espressif32
board = az-delivery-devkit-v4
upload_protocol = esptool
extra_scripts = erase_before_upload.py
[env:esp32-az-delivery-devkit-v4_ota]
platform = espressif32
board = az-delivery-devkit-v4
upload_protocol = espota
upload_port = 10.0.0.1
upload_flags = --port=8266