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 701B

12345678910111213141516171819202122232425262728293031
  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. const char *control_state_name(void);
  13. void control_act_input(int n);
  14. #endif // FUNCTION_CONTROL
  15. // ----------------------------------------------------------------------------
  16. void blink_lcd(int n, int wait = 200);
  17. void write_to_all(const char *a, const char *b,
  18. const char *c, const char *d, int num_input);
  19. void backspace(void);
  20. #endif // _FUNCTIONALITY_H_