/* debug.h - Debug functions. Created by João Lino, September 25, 2015. Released into the public domain. */ #ifndef DEBUG_h #define DEBUG_h // ######################### TEMPLATES ######################### template void debugPrintVar( char *name, const T& value ); template void debugPrintVar( char *name, const T& value ) { Serial.print("["); Serial.print(name); Serial.print(":"); Serial.print(value); Serial.println("]"); } void debugPrintFunction( char *name ) { Serial.print("++++++++++++++++++++++++ "); Serial.print(name); Serial.println("++++++++++++++++++++++++"); } #endif