-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
45 lines (40 loc) · 1.09 KB
/
platformio.ini
File metadata and controls
45 lines (40 loc) · 1.09 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
; 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
[env:uno]
platform = atmelavr
board = uno
framework = arduino
[env:promini_5v]
platform = atmelavr
board = pro16MHzatmega328
framework = arduino
board_build.mcu = atmega328p
board_build.f_cpu = 16000000L
[env:promini_3v3]
platform = atmelavr
board = pro8MHzatmega328
framework = arduino
board_build.mcu = atmega328p
board_build.f_cpu = 8000000L
[env:attiny85]
platform = atmelavr
board = attiny85
framework = arduino
upload_protocol = usbtiny ; or etc
[env:leonardo_5v]
platform = atmelavr
board = feather32u4
framework = arduino
board_build.mcu = atmega32u4
board_build.f_cpu = 16000000L
board_build.usb_product = "am_spinin"
lib_deps =
mheironimus/Joystick@^2.0.7
arduino-libraries/Mouse@^1.0.1