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

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