brewco/keyboard.h

Fri, 04 Dec 2015 22:57:23 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 04 Dec 2015 22:57:23 +0100
changeset 445
3ec477cda546
parent 441
bde74a8f2ad7
child 451
2247970de278
permissions
-rw-r--r--

Changed internal storage of temperatures to float. Added 2 prompts. Added editors for float and integer values. Added most of brewunit edit functions.

#ifndef	_KEYBOARD_H
#define	_KEYBOARD_H



/*
 * GPIO pins for the push buttons.
 */
#define	PANEL_RETURN	3
#define	PANEL_ENTER	4
#define	PANEL_DOWN	5
#define	PANEL_UP	6


/*
 * Key names
 */
#define	KEY_NONE	0
#define	KEY_UP		1
#define	KEY_DOWN	2
#define	KEY_RETURN	3
#define	KEY_ENTER	4
#define	KEY_ALL		99


int keywait(void);
int keycheck(void);

#ifdef HAVE_WIRINGPI_H
PI_THREAD (my_keyboard_loop);
#else
void *my_keyboard_loop(void *);
#endif

#endif

mercurial