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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright (c) 2021 Thomas Buck <thomas@xythobuz.de>
  3. *
  4. * This file is part of Giess-o-mat.
  5. *
  6. * Giess-o-mat is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Giess-o-mat is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Giess-o-mat. If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. #ifndef _FUNCTIONALITY_H_
  20. #define _FUNCTIONALITY_H_
  21. #ifdef FUNCTION_UI
  22. void ui_setup(void);
  23. void ui_run(void);
  24. #endif // FUNCTION_UI
  25. // ----------------------------------------------------------------------------
  26. #ifdef FUNCTION_CONTROL
  27. #include "Plants.h"
  28. #include "BoolField.h"
  29. void control_setup(void);
  30. void control_begin(void);
  31. void control_run(void);
  32. const char *control_state_name(void);
  33. void control_act_input(int n);
  34. Plants *get_plants(void);
  35. bool sm_is_idle(void);
  36. #if defined(TELEGRAM_TOKEN) || defined(MQTT_HOST)
  37. void sm_bot_abort(void);
  38. void sm_bot_start_auto(BoolField &ferts, BoolField &plants);
  39. #endif // TELEGRAM_TOKEN || MQTT_HOST
  40. #endif // FUNCTION_CONTROL
  41. // ----------------------------------------------------------------------------
  42. void blink_lcd(int n, int wait = 200);
  43. void write_to_all(const char *a, const char *b,
  44. const char *c, const char *d, int num_input);
  45. void backspace(void);
  46. #endif // _FUNCTIONALITY_H_