DIY fertilizer mixer and plant watering machine https://www.xythobuz.de/giessomat.html
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 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 = esp8266_main, esp32_main, arduino_ui, arduino_test, leonardo_main, leonardo_test
  12. [env:esp8266_main]
  13. platform = espressif8266
  14. board = esp01_1m
  15. framework = arduino
  16. build_flags = -D PLATFORM_ESP -D FUNCTION_CONTROL
  17. lib_deps =
  18. Wire
  19. [env:esp32_main]
  20. platform = espressif32
  21. board = esp32dev
  22. framework = arduino
  23. build_flags = -D PLATFORM_ESP -D FUNCTION_CONTROL
  24. upload_protocol = esptool
  25. upload_port = /dev/ttyUSB1
  26. lib_deps =
  27. Wire
  28. [env:arduino_ui]
  29. platform = atmelavr
  30. board = pro16MHzatmega328
  31. framework = arduino
  32. build_flags = -D PLATFORM_AVR -D FUNCTION_UI
  33. upload_port = /dev/ttyUSB1
  34. monitor_port = /dev/ttyUSB1
  35. monitor_speed = 115200
  36. lib_deps =
  37. Wire
  38. https://github.com/nickgammon/SendOnlySoftwareSerial
  39. https://github.com/rlogiacco/CircularBuffer
  40. [env:arduino_test]
  41. platform = atmelavr
  42. board = pro16MHzatmega328
  43. framework = arduino
  44. build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL -D FUNCTION_UI
  45. upload_port = /dev/ttyUSB1
  46. monitor_port = /dev/ttyUSB1
  47. monitor_speed = 115200
  48. lib_deps =
  49. https://github.com/nickgammon/SendOnlySoftwareSerial
  50. https://github.com/rlogiacco/CircularBuffer
  51. [env:leonardo_main]
  52. platform = atmelavr
  53. board = leonardo
  54. framework = arduino
  55. build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL
  56. upload_port = /dev/ttyACM0
  57. monitor_port = /dev/ttyACM0
  58. monitor_speed = 115200
  59. lib_deps =
  60. Wire
  61. https://github.com/rlogiacco/CircularBuffer
  62. [env:leonardo_test]
  63. platform = atmelavr
  64. board = leonardo
  65. framework = arduino
  66. build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL -D FUNCTION_UI
  67. upload_port = /dev/ttyACM0
  68. monitor_port = /dev/ttyACM0
  69. monitor_speed = 115200
  70. lib_deps =
  71. https://github.com/nickgammon/SendOnlySoftwareSerial
  72. https://github.com/rlogiacco/CircularBuffer