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

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