platformio.ini 747 B

123456789101112131415161718192021222324
  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. [env:nanoatmega328]
  11. platform = atmelavr
  12. board = nanoatmega328new
  13. board_build.f_cpu = 16000000L
  14. framework = arduino
  15. lib_deps = https://git.sweproj.com/IHOLL/EasyNextionLibrary.git#master
  16. https://github.com/adafruit/Adafruit_MCP4725
  17. https://github.com/stevemarple/MCP342x
  18. upload_port = /dev/ttyUSB0
  19. monitor_port = /dev/ttyUSB0
  20. monitor_speed = 38400