123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ; 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
-
- [platformio]
- default_envs = ramps_lcd2004, ramps_lcd12864
-
- [env:ramps_lcd2004]
- platform = atmelavr
- board = megaatmega2560
- framework = arduino
- build_flags = -D USE_20X4_TEXT_LCD -Wno-sign-compare
- upload_port = /dev/ttyUSB1
- monitor_port = /dev/ttyUSB1
- monitor_speed = 115200
- lib_deps =
- arduino-libraries/LiquidCrystal
- https://github.com/waspinator/AccelStepper
- https://github.com/mathertel/RotaryEncoder
- https://github.com/janelia-arduino/Array
- https://github.com/PaulStoffregen/TimerOne
-
- [env:ramps_lcd12864]
- platform = atmelavr
- board = megaatmega2560
- framework = arduino
- build_flags = -D USE_FULL_GRAPHIC_LCD -Wno-sign-compare
- upload_port = /dev/ttyUSB1
- monitor_port = /dev/ttyUSB1
- monitor_speed = 115200
- lib_deps =
- u8g2
- https://github.com/waspinator/AccelStepper
- https://github.com/mathertel/RotaryEncoder
- https://github.com/janelia-arduino/Array
- https://github.com/PaulStoffregen/TimerOne
|