DIY fertilizer mixer and plant watering machine https://www.xythobuz.de/giessomat.html
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Functionality.h 631B

12345678910111213141516171819202122232425262728
  1. #ifndef _FUNCTIONALITY_H_
  2. #define _FUNCTIONALITY_H_
  3. #ifdef FUNCTION_UI
  4. void ui_setup(void);
  5. void ui_run(void);
  6. #endif // FUNCTION_UI
  7. // ----------------------------------------------------------------------------
  8. #ifdef FUNCTION_CONTROL
  9. void control_setup(void);
  10. void control_begin(void);
  11. void control_run(void);
  12. #endif // FUNCTION_CONTROL
  13. // ----------------------------------------------------------------------------
  14. void blink_lcd(int n, int wait = 200);
  15. void write_to_all(const char *a, const char *b,
  16. const char *c, const char *d, int num_input);
  17. void backspace(void);
  18. #endif // _FUNCTIONALITY_H_