Files @ 39ea1ee3d5af
Branch filter:

Location: therm-ng/inc/buttons.h

Ethan Zonca
Add logo rendering
/*
 * buttons.h
 *
 *  Created on: Oct 22, 2016
 *      Author: Nicholas Orlando
 */

#ifndef BUTTONS_H_
#define BUTTONS_H_

enum _btn_state_id
{
	NOT_PRESSED = 0,
	PRESSED = 1,
	HELD_SHORT = 2,
	HELD_LONG = 3,
};

void freaking_debounce(void);

#endif /* BUTTONS_H_ */