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

1234567891011121314151617181920212223242526272829303132333435
  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. #include "Plants.h"
  10. void control_setup(void);
  11. void control_begin(void);
  12. void control_run(void);
  13. const char *control_state_name(void);
  14. void control_act_input(int n);
  15. Plants *get_plants(void);
  16. #endif // FUNCTION_CONTROL
  17. // ----------------------------------------------------------------------------
  18. void blink_lcd(int n, int wait = 200);
  19. void write_to_all(const char *a, const char *b,
  20. const char *c, const char *d, int num_input);
  21. void backspace(void);
  22. #endif // _FUNCTIONALITY_H_