template void debug(T val) { #ifdef DEBUG Serial.print(val); #endif } template void debugln(T val) { #ifdef DEBUG Serial.println(val); #endif } template void debugln(T str, Y val) { #ifdef DEBUG Serial.print(str); Serial.println(val); #endif } void debugln() { #ifdef DEBUG Serial.println(); #endif }