/* * pump_control.hpp * * Created on: Jul 27, 2021 * Author: Andreas Berthoud */ #ifndef INC_PUMP_CONTROL_H_ #define INC_PUMP_CONTROL_H_ #include namespace pump { void turn_on(uint16_t timeout); uint8_t is_on(); void turn_off(); } #endif /* INC_PUMP_CONTROL_H_ */