-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.example
29 lines (24 loc) · 990 Bytes
/
platformio.example
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
; PlatformIO Project Configuration File
;
; Important Note:
; ---------------------------------------------
; Please make a copy of this file for development and rename it to platformio.ini,
; then customize it as needed.
; The line extra_scripts = pre:.platform/build_main.py in the platformio.ini file
; will generate src/main.cpp before compilation. Note that main.cpp is included in .gitignore,
; so you can modify it as needed. Similarly, the platformio.ini file is also included in .gitignore.
;
; However, please do not rename the platformio.example file to platformio.ini.
; Pull requests with this change will not be accepted.
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:nanoatmega328new]
platform = atmelavr
board = nanoatmega328new
framework = arduino
monitor_speed = 9600
monitor_port = /dev/ttyUSB1
upload_port = /dev/ttyUSB1
extra_scripts =
pre:.platform/build_main.py