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

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