S&B Volcano vaporizer remote control with Pi Pico W
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * workflow.h
  3. *
  4. * Copyright (c) 2023 Thomas Buck (thomas@xythobuz.de)
  5. *
  6. * This program 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. * This program 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. * See <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __WORKFLOW_H__
  19. #define __WORKFLOW_H__
  20. #include <stdint.h>
  21. #define WF_MAX_STR_LEN 10
  22. #define WF_MAX_STEPS 42
  23. #define WF_MAX_FLOWS 6
  24. enum wf_op {
  25. OP_SET_TEMPERATURE = 0,
  26. OP_WAIT_TEMPERATURE,
  27. OP_WAIT_TIME,
  28. OP_PUMP_TIME,
  29. };
  30. struct wf_step {
  31. enum wf_op op;
  32. uint16_t val;
  33. };
  34. struct workflow {
  35. char name[WF_MAX_STR_LEN];
  36. char author[WF_MAX_STR_LEN];
  37. struct wf_step steps[WF_MAX_STEPS];
  38. uint16_t count;
  39. };
  40. enum wf_status {
  41. WF_IDLE = 0,
  42. WF_RUNNING,
  43. };
  44. struct wf_state {
  45. enum wf_status status;
  46. uint16_t index;
  47. uint16_t count;
  48. struct wf_step *step;
  49. uint16_t start_val, curr_val;
  50. };
  51. uint16_t wf_count(void);
  52. void wf_move_down(uint16_t index);
  53. void wf_move_up(uint16_t index);
  54. const char *wf_name(uint16_t index);
  55. const char *wf_author(uint16_t index);
  56. uint16_t wf_steps(uint16_t index);
  57. void wf_move_step_down(uint16_t index, uint16_t step);
  58. void wf_move_step_up(uint16_t index, uint16_t step);
  59. struct wf_step *wf_get_step(uint16_t index, uint16_t step);
  60. const char *wf_step_str(struct wf_step *step);
  61. struct wf_state wf_status(void);
  62. void wf_start(uint16_t index);
  63. void wf_reset(void);
  64. void wf_run(void);
  65. extern const uint16_t wf_default_count;
  66. extern const struct workflow wf_default_data[];
  67. #endif // __WORKFLOW_H__