24 lines
260 B
C
24 lines
260 B
C
/*
|
|
* defines.h
|
|
*
|
|
* Created on: Aug 20, 2017
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef DEFINES_H_
|
|
#define DEFINES_H_
|
|
|
|
// #define DEBUG
|
|
#define SLEEP
|
|
|
|
#define EEPROM_ADDR 0
|
|
|
|
#define CONFIG_SWITCH 4
|
|
#define LED_PIN 14
|
|
#define ONE_WIRE_BUS 2
|
|
|
|
|
|
|
|
|
|
#endif /* DEFINES_H_ */
|