Blame view

pump.h 217 Bytes
8dca7aeb   henyxia   Automatic Pumping...
1
2
3
  #ifndef __PUMP_H__
  #define __PUMP_H__
  
11824cae   Pierre Letousey   Added automatic p...
4
5
6
7
8
9
  void initProcessPump(void);
  void stopAutoPump(void);
  void actDeb(int);
  void setCoffeeWanted(void);
  void setVolWanted(int);
  bool isPumpOn(void);
8dca7aeb   henyxia   Automatic Pumping...
10
11
12
  void* processPump(void*);
  
  #endif