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 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 = esp32_main, arduino_ui
  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. https://github.com/rlogiacco/CircularBuffer
  19. https://github.com/plerup/espsoftwareserial
  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. https://github.com/rlogiacco/CircularBuffer
  29. https://github.com/plerup/espsoftwareserial
  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. https://github.com/nickgammon/SendOnlySoftwareSerial
  40. https://github.com/rlogiacco/CircularBuffer
  41. [env:leonardo_ui]
  42. platform = atmelavr
  43. board = leonardo
  44. framework = arduino
  45. build_flags = -D PLATFORM_AVR -D FUNCTION_UI
  46. upload_port = /dev/ttyACM0
  47. monitor_port = /dev/ttyACM0
  48. monitor_speed = 115200
  49. lib_deps =
  50. https://github.com/nickgammon/SendOnlySoftwareSerial
  51. https://github.com/rlogiacco/CircularBuffer