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.
23 lines
297 B
23 lines
297 B
/*
|
|
* pump_control.h
|
|
*
|
|
* Created on: Jul 27, 2021
|
|
* Author: Andreas Berthoud
|
|
*/
|
|
|
|
#ifndef INC_PUMP_CONTROL_H_
|
|
#define INC_PUMP_CONTROL_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint8_t pump_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* INC_PUMP_CONTROL_H_ */
|
|
|