S&B Volcano vaporizer remote control with Pi Pico W
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * venty.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 __VENTY_H__
  19. #define __VENTY_H__
  20. #include <stdint.h>
  21. #include <stdbool.h>
  22. // in 1/10th degrees C, or < 0 on error
  23. int16_t venty_get_target_temp(void);
  24. // v in 1/10th degrees C, returns < 0 on error
  25. int8_t venty_set_target_temp(uint16_t value);
  26. // returns < 0 on error
  27. int8_t venty_set_heater_state(bool value);
  28. int8_t venty_set_eco_current(bool value);
  29. int8_t venty_set_eco_voltage(bool value);
  30. int8_t venty_set_vibration(bool value);
  31. // v from 1 to 9, returns < 0 on error
  32. int8_t venty_set_brightness(uint8_t value);
  33. // in percent, or < 0 on error
  34. int8_t venty_get_battery_state(void);
  35. // bool, or < 0 on error
  36. int8_t venty_get_heater_state(void);
  37. int8_t venty_get_eco_current(void);
  38. int8_t venty_get_eco_voltage(void);
  39. int8_t venty_get_vibration(void);
  40. // returns 1 to 9, or < 0 on error
  41. int8_t venty_get_brightness(void);
  42. #endif // __VENTY_H__