23 lines
287 B
C
23 lines
287 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 5
|
|
|
|
#define LED_1_GREEN 12
|
|
#define LED_1_RED 13
|
|
#define LED_2_GREEN 14
|
|
#define LED_2_RED 16
|
|
|
|
#endif /* DEFINES_H_ */
|