12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
-
-
- #ifndef __VENTY_H__
- #define __VENTY_H__
-
- #include <stdint.h>
- #include <stdbool.h>
-
-
- int16_t venty_get_target_temp(void);
-
-
- int8_t venty_set_target_temp(uint16_t value);
-
-
- int8_t venty_set_heater_state(bool value);
- int8_t venty_set_eco_current(bool value);
- int8_t venty_set_eco_voltage(bool value);
- int8_t venty_set_vibration(bool value);
-
-
- int8_t venty_set_brightness(uint8_t value);
-
-
- int8_t venty_get_battery_state(void);
-
-
- int8_t venty_get_heater_state(void);
- int8_t venty_get_eco_current(void);
- int8_t venty_get_eco_voltage(void);
- int8_t venty_get_vibration(void);
-
-
- int8_t venty_get_brightness(void);
-
- #endif
|