thermferm/panel.h

Sat, 29 Nov 2014 16:07:34 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 29 Nov 2014 16:07:34 +0100
changeset 300
4ce46ff3e37d
parent 229
5f93b61adb34
child 418
0bfe08c7ba6e
permissions
-rw-r--r--

The LIST LOG command now automatic adjusts the number of output lines and resolution by calculating a reasonable interval between 1 and 60 minutes. Bumped to version 0.2.6

#ifndef	_PANEL_H
#define	_PANEL_H


#ifdef HAVE_WIRINGPI_H

/*
 * GPIO pins for the frontpanel LED and push buttons.
 */
#define	PANEL_LED	2
#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_ESCAPE	3
#define	KEY_ENTER	4
#define	KEY_CONFIRM	5	/* Long Enter */
#define	KEY_ALL		99


int keycheck(void);


PI_THREAD (my_panel_loop);


#endif

#endif

mercurial