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.

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_