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

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