DIY fertilizer mixer and plant watering machine https://www.xythobuz.de/giessomat.html
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

platformio.ini 2.7KB

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