1234567891011121314151617181920212223242526272829303132333435363738 |
-
-
- #ifndef __CRAFTY_H__
- #define __CRAFTY_H__
-
- #include <stdint.h>
- #include <stdbool.h>
-
-
- int16_t crafty_get_current_temp(void);
- int16_t crafty_get_target_temp(void);
-
-
- int8_t crafty_set_target_temp(uint16_t v);
-
-
- int8_t crafty_set_heater_state(bool value);
-
-
- int8_t crafty_get_battery_state(void);
-
- #endif
|