1234567891011121314151617 |
- #pragma once
- #ifndef _COMMON_H
- #define _COMMON_H
- /**
- * Global defines
- */
- #ifndef F_CPU
- #define F_CPU 16000000
- #endif // F_CPU
- #define USE_BRIGHT_CONTROL 1
- //#define USE_DHT
- //#define USE_UART
- //#define LAMP_TEST 1
- #endif /* _COMMON_H */
|