-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
62 lines (47 loc) · 931 Bytes
/
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
[platformio]
default_envs = promini
;src_dir = src
;;lib_dir = lib
; http://docs.platformio.org/page/projectconf.html
; 89
; 872
; 1484
; 165
[common]
lib_deps =
PubSubClient
Keypad
[env:promini]
platform = atmelavr
board = pro16MHzatmega328
framework = arduino
monitor_speed = 115200
lib_deps =
${common.lib_deps}
UIPEthernet
build_flags = -DArduinoProMini
; -DSPACESAVING
; upload_port = /dev/ttyUSB3
; monitor_port = /dev/ttyUSB3
[env:promicro]
platform = atmelavr
board = sparkfun_promicro16
framework = arduino
board_build.mcu = atmega32u4
monitor_speed = 115200
lib_deps =
${common.lib_deps}
UIPEthernet
build_flags = -DArduinoProMicro
; -DSPACESAVING
upload_port = /dev/ttyACM1
monitor_port = /dev/ttyACM1
[env:uno]
platform = atmelavr
board = uno
framework = arduino
monitor_speed = 115200
lib_deps =
${common.lib_deps}
Ethernet
build_flags = -DArduinoUNO