Blame view

hvc.h 309 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);
bb8c2799   henyxia   Fixed version
13
14
15
16
  void	setHeatOn();
  void	setHeatOff();
  void	setPumpOn();
  void	setPumpOff();
9e9f365e   henyxia   Added HVC interface
17
18
  
  #endif