Blame view

hvc.h 235 Bytes
9e9f365e   henyxia   Added HVC interface
1
2
3
4
5
6
7
8
  #ifndef __HVC_H__
  #define __HVC_H__
  
  #include <stdbool.h>
  
  bool	initHVC();
  void*	processHVC();
  void	stopHVC();
ac0ae6b0   henyxia   HVC can now use t...
9
10
  void	setPumpWantedState(bool);
  void	setHeatWantedState(bool);
5dd66ab0   henyxia   Added timer optio...
11
12
  void	setPumpTimer(double);
  void	setHeatTimer(double);
9e9f365e   henyxia   Added HVC interface
13
14
  
  #endif