ATM/include/Debug.h
2022-01-06 16:33:37 +01:00

5 lines
96 B
C

#ifdef DEBUG
#define DEBUG_PRINT(x) Serial.println (x)
#else
#define DEBUG_PRINT(x)
#endif