Blame view

ui.h 266 Bytes
ea1218f1   henyxia   UI finished
1
2
3
  #ifndef __UI_H__
  #define __UI_H__
  
9e9f365e   henyxia   Added HVC interface
4
5
  #include <stdbool.h>
  
cdaa873f   henyxia   Log fixed
6
7
  void*	drawUI(void*);
  void	initUILog();
9e9f365e   henyxia   Added HVC interface
8
9
10
  void	setDebit(unsigned int);
  void	setHeat(bool);
  void	setPump(bool);
cdaa873f   henyxia   Log fixed
11
  void	setStartTime(char*);
3bdc9daf   henyxia   NFC Added
12
  void	setTagName(char*);
9e9f365e   henyxia   Added HVC interface
13
  void	setTemp(unsigned int);
d4d5bb6d   henyxia   Bus working
14
  void	stopUI();
ea1218f1   henyxia   UI finished
15
16
  
  #endif