-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
74 lines (68 loc) · 1.62 KB
/
Copy pathplatformio.ini
File metadata and controls
74 lines (68 loc) · 1.62 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[platformio]
default_envs = m5stack
; default_envs = m5stack-wifi
; default_envs = m5stack-espnow
; default_envs = m5stack-mqtt
; default_envs = m5stick-c
data_dir = data
[env]
platform = espressif32
framework = arduino
monitor_speed = 115200
monitor_filters = time, esp32_exception_decoder
upload_speed = 1500000
board_build.f_flash = 80000000L
build_flags = -DENABLE_SERIAL_MONITOR
# upload_port = COM6
# monitor_port = ${env:upload_port}
[env:m5stack]
board = m5stack-core-esp32
build_flags = -DTARGET_M5STACK ${env.build_flags}
lib_ignore =
BLEKeyboardController
EspNowManager
MQTTClient
NVSLoader
WiFiController
lib_deps =
M5Stack
[env:m5stack-wifi]
board = ${env:m5stack.board}
build_flags = -DENABLE_WIFI ${env:m5stack.build_flags}
lib_ignore =
BLEKeyboardController
EspNowManager
MQTTClient
lib_deps =
${env:m5stack.lib_deps}
Arduino_JSON
[env:m5stack-ble-keyboard]
board = ${env:m5stack.board}
build_flags = -DENABLE_BLE_KEYBOARD ${env:m5stack.build_flags}
lib_ignore =
EspNowManager
MQTTClient
NVSLoader
WiFiController
lib_deps =
${env:m5stack.lib_deps}
https://github.com/T-vK/ESP32-BLE-Keyboard
[env:m5stack-espnow]
board = ${env:m5stack.board}
build_flags = -DENABLE_ESPNOW ${env:m5stack.build_flags}
lib_ignore =
BLEKeyboardController
MQTTClient
NVSLoader
WiFiController
lib_deps =
${env:m5stack.lib_deps}
[env:m5stack-mqtt]
board = ${env:m5stack-wifi.board}
build_flags = -DENABLE_MQTT ${env:m5stack-wifi.build_flags}
lib_ignore =
BLEKeyboardController
EspNowManager
lib_deps =
${env:m5stack-wifi.lib_deps}
knolleary/pubsubclient