From 14afae7051ed9c7942711f97495413a1d1af1ace Mon Sep 17 00:00:00 2001 From: Markus Mair Date: Sat, 8 Jan 2022 13:14:02 +0100 Subject: [PATCH] add platformio.ini --- platformio.ini | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 platformio.ini diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..a4bf0f3 --- /dev/null +++ b/platformio.ini @@ -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 \ No newline at end of file