20 lines
297 B
C
20 lines
297 B
C
/*
|
|
* buttons.h
|
|
*
|
|
* Created on: 09.01.2016
|
|
* Author: BlexTw11
|
|
*/
|
|
|
|
#ifndef INCLUDE_BUTTONS_H_
|
|
#define INCLUDE_BUTTONS_H_
|
|
|
|
#define BTN_PORT PORTD
|
|
#define BTN_DDR DDRD
|
|
|
|
#define BTN_HOUR PD5
|
|
#define BTN_MINUTE PD6
|
|
#define BTN_MODE PD7
|
|
|
|
|
|
#endif /* INCLUDE_BUTTONS_H_ */
|