123456789101112131415161718192021222324252627282930313233343536 |
-
-
- #ifndef __VOLCANO_H__
- #define __VOLCANO_H__
-
- #include <stdint.h>
- #include <stdbool.h>
-
-
- int16_t volcano_get_current_temp(void);
- int16_t volcano_get_target_temp(void);
-
-
- int8_t volcano_set_target_temp(uint16_t v);
-
-
- int8_t volcano_set_heater_state(bool value);
- int8_t volcano_set_pump_state(bool value);
-
- #endif
|