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.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. [env:ramps_lcd12864]
  26. platform = atmelavr
  27. board = megaatmega2560
  28. framework = arduino
  29. build_flags = -D USE_FULL_GRAPHIC_LCD -Wno-sign-compare
  30. upload_port = /dev/ttyUSB1
  31. monitor_port = /dev/ttyUSB1
  32. monitor_speed = 115200
  33. lib_deps =
  34. u8g2
  35. https://github.com/waspinator/AccelStepper
  36. https://github.com/mathertel/RotaryEncoder
  37. https://github.com/janelia-arduino/Array