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

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