#ifndef __TEST_H_
#define __TEST_H_

#include <avr/io.h>

// Port definations for this project
#define LED_PORT_OUT    PORTC       // Port B
#define LED_PORT_DIR    DDRC       // Data Direction Register B

#define BTN_PORT_IN		PINA		// Port A
#define BTN_PORT_DIR	DDRA

void read_button_pins(void);
void button_pressed(int i);

#endif

