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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. https://github.com/RobTillaart/PCF8574
  35. [env:arduino_ui]
  36. platform = atmelavr
  37. board = pro16MHzatmega328
  38. framework = arduino
  39. build_flags = -D PLATFORM_AVR -D FUNCTION_UI
  40. upload_port = /dev/ttyUSB1
  41. monitor_port = /dev/ttyUSB1
  42. monitor_speed = 115200
  43. lib_deps =
  44. Wire
  45. https://github.com/nickgammon/SendOnlySoftwareSerial
  46. https://github.com/rlogiacco/CircularBuffer
  47. [env:arduino_test]
  48. platform = atmelavr
  49. board = pro16MHzatmega328
  50. framework = arduino
  51. build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL -D FUNCTION_UI
  52. upload_port = /dev/ttyUSB1
  53. monitor_port = /dev/ttyUSB1
  54. monitor_speed = 115200
  55. lib_deps =
  56. https://github.com/nickgammon/SendOnlySoftwareSerial
  57. https://github.com/rlogiacco/CircularBuffer
  58. [env:leonardo_main]
  59. platform = atmelavr
  60. board = leonardo
  61. framework = arduino
  62. build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL
  63. upload_port = /dev/ttyACM0
  64. monitor_port = /dev/ttyACM0
  65. monitor_speed = 115200
  66. lib_deps =
  67. Wire
  68. https://github.com/rlogiacco/CircularBuffer
  69. [env:leonardo_test]
  70. platform = atmelavr
  71. board = leonardo
  72. framework = arduino
  73. build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL -D FUNCTION_UI
  74. upload_port = /dev/ttyACM0
  75. monitor_port = /dev/ttyACM0
  76. monitor_speed = 115200
  77. lib_deps =
  78. https://github.com/nickgammon/SendOnlySoftwareSerial
  79. https://github.com/rlogiacco/CircularBuffer