No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

platformio.ini 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ; PlatformIO Project Configuration File
  2. ;
  3. ; Build options: build flags, source filter
  4. ; Upload options: custom upload port, speed and extra flags
  5. ; Library options: dependencies, extra library storages
  6. ; Advanced options: extra scripting
  7. ;
  8. ; Please visit documentation for the other options and examples
  9. ; https://docs.platformio.org/page/projectconf.html
  10. [platformio]
  11. default_envs = ramps_lcd2004, ramps_lcd12864
  12. [env:ramps_lcd2004]
  13. platform = atmelavr
  14. board = megaatmega2560
  15. framework = arduino
  16. build_flags = -D USE_20X4_TEXT_LCD -Wno-sign-compare
  17. upload_port = /dev/ttyUSB1
  18. monitor_port = /dev/ttyUSB1
  19. monitor_speed = 115200
  20. lib_deps =
  21. arduino-libraries/LiquidCrystal
  22. https://github.com/waspinator/AccelStepper
  23. https://github.com/mathertel/RotaryEncoder
  24. https://github.com/janelia-arduino/Array
  25. https://github.com/PaulStoffregen/TimerOne
  26. [env:ramps_lcd12864]
  27. platform = atmelavr
  28. board = megaatmega2560
  29. framework = arduino
  30. build_flags = -D USE_FULL_GRAPHIC_LCD -Wno-sign-compare
  31. upload_port = /dev/ttyUSB1
  32. monitor_port = /dev/ttyUSB1
  33. monitor_speed = 115200
  34. lib_deps =
  35. u8g2
  36. https://github.com/waspinator/AccelStepper
  37. https://github.com/mathertel/RotaryEncoder
  38. https://github.com/janelia-arduino/Array
  39. https://github.com/PaulStoffregen/TimerOne