common.h 259 B

1234567891011121314151617
  1. #pragma once
  2. #ifndef _COMMON_H
  3. #define _COMMON_H
  4. /**
  5. * Global defines
  6. */
  7. #ifndef F_CPU
  8. #define F_CPU 8000000
  9. #endif // F_CPU
  10. #define USE_BRIGHT_CONTROL 1
  11. //#define USE_DHT
  12. //#define USE_UART
  13. //#define LAMP_TEST 1
  14. #endif /* _COMMON_H */