You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
298 B
21 lines
298 B
/*
|
|
* pump_control.hpp
|
|
*
|
|
* Created on: Jul 27, 2021
|
|
* Author: Andreas Berthoud
|
|
*/
|
|
|
|
#ifndef INC_PUMP_CONTROL_H_
|
|
#define INC_PUMP_CONTROL_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace pump {
|
|
|
|
void turn_on(uint16_t timeout);
|
|
uint8_t is_on();
|
|
void turn_off();
|
|
|
|
}
|
|
|
|
#endif /* INC_PUMP_CONTROL_H_ */
|
|
|