14 lines
176 B
C
14 lines
176 B
C
#ifndef __DEBUG_H
|
|
#define __DEBUG_H
|
|
|
|
#include <Wire.h>
|
|
|
|
#define USE_DEBUG 0
|
|
#if USE_DEBUG
|
|
#define Debug(__info) Serial.print(__info)
|
|
#else
|
|
#define Debug(__info)
|
|
#endif
|
|
|
|
#endif
|