GITLAB

henyxia / tweekd

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • tweekd
  • ui.h
  • 9e9f365e   Added HVC interface ... Browse Code ยป
    Serial is now an external call
    henyxia
    2015-03-05 14:49:07 +0100  
ui.h 306 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef __UI_H__
#define __UI_H__

#include <stdbool.h>

void*	drawUI(void*);
void	initUILog();
void	addToLog(char*);
void	displayUI();
void	setDebit(unsigned int);
void	setHeat(bool);
void	setPump(bool);
void	setStartTime(char*);
void	setTagName(char*);
void	setTemp(unsigned int);
void	stopUI();

#endif