-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
29 lines (26 loc) · 820 Bytes
/
platformio.ini
File metadata and controls
29 lines (26 loc) · 820 Bytes
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
; 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]
default_envs = pro_micro_usb
[common_env_data]
framework = arduino
monitor_speed = 115200
monitor_port = /dev/cu.usbmodem*
lib_deps =
nicohood/HID-Project @ ^2.7.0
contrem/arduino-timer@^2.3.0
[env:pro_micro_usb]
platform = atmelavr
board = sparkfun_promicro16
monitor_speed = ${common_env_data.monitor_speed}
monitor_port = ${common_env_data.monitor_port}
framework = ${common_env_data.framework}
lib_deps =
${common_env_data.lib_deps}