-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
56 lines (49 loc) · 1.23 KB
/
platformio.ini
File metadata and controls
56 lines (49 loc) · 1.23 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
[platformio]
env_default = redboard
[common]
framework = arduino
monitor_baud = 115200
src_filter = +<*> -<*.ino.*>
lib_deps =
[env:redboard]
platform = atmelavr
board = sparkfun_redboard
framework = ${common.framework}
monitor_baud = ${common.monitor_baud}
src_filter = ${common.src_filter}
lib_deps = ${common.lib_deps}
[env:uno]
platform = atmelavr
board = uno
framework = ${common.framework}
monitor_baud = ${common.monitor_baud}
src_filter = ${common.src_filter}
lib_deps = ${common.lib_deps}
[env:mini]
platform = atmelavr
board = pro16MHzatmega328
framework = ${common.framework}
monitor_baud = ${common.monitor_baud}
src_filter = ${common.src_filter}
lib_deps = ${common.lib_deps}
[env:trinket]
platform = atmelavr
board = protrinket5
framework = ${common.framework}
monitor_baud = ${common.monitor_baud}
src_filter = ${common.src_filter}
lib_deps = ${common.lib_deps}
[env:teensy]
platform = teensy
board = teensy20
framework = ${common.framework}
monitor_baud = ${common.monitor_baud}
src_filter = ${common.src_filter}
lib_deps = ${common.lib_deps}
[env:nodemcu]
platform = espressif8266
board = nodemcu
framework = ${common.framework}
monitor_baud = ${common.monitor_baud}
src_filter = ${common.src_filter}
lib_deps = ${common.lib_deps}