Files @ a710d1e0fc2a
Branch filter:

Location: therm-ng/inc/buttons.h

Ethan Zonca
Import from old therm: menus working
/*
 * 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_ */