24 lines
307 B
C
24 lines
307 B
C
/*
|
|
* defines.h
|
|
*
|
|
* Created on: Aug 20, 2017
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef DEFINES_H_
|
|
#define DEFINES_H_
|
|
|
|
#define DEBUG
|
|
|
|
#define EEPROM_ADDR 0
|
|
|
|
#define CONFIG_SWITCH 13
|
|
#define SWITCH_1 13
|
|
#define SWITCH_2 12
|
|
#define SWITCH_3 14
|
|
#define LED_1 2
|
|
#define LED_2 0
|
|
#define LED_3 4
|
|
|
|
#endif /* DEFINES_H_ */
|