Skip to content

Commit

Permalink
add platformio.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
Maggge committed Jan 8, 2022
1 parent 5ff2ac9 commit 14afae7
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
; 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:nanoatmega328new]
platform = atmelavr
board = nanoatmega328new
framework = arduino

lib_deps =
https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library
https://github.com/coryjfowler/MCP_CAN_lib
Wire
SPI

[env:mega2560]
platform = atmelavr
board = megaatmega2560
framework = arduino

lib_deps =
https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library
https://github.com/coryjfowler/MCP_CAN_lib
Wire
SPI

[env:uno]
platform = atmelavr
board = uno
framework = arduino

lib_deps =
https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library
https://github.com/coryjfowler/MCP_CAN_lib
Wire
SPI

0 comments on commit 14afae7

Please sign in to comment.