ATM/include/Debug.h

6 lines
96 B
C
Raw Normal View History

2022-01-06 15:33:37 +00:00
#ifdef DEBUG
#define DEBUG_PRINT(x) Serial.println (x)
#else
#define DEBUG_PRINT(x)
#endif