| 1234567891011121314151617181920212223242526 |
- template <typename T>
- void debug(T val) {
- #ifdef DEBUG
- Serial.print(val);
- #endif
- }
- template <typename T>
- void debugln(T val) {
- #ifdef DEBUG
- Serial.println(val);
- #endif
- }
- void debugln(const char* str, long val) {
- #ifdef DEBUG
- Serial.print(str);
- Serial.println(val);
- #endif
- }
- void debugln() {
- #ifdef DEBUG
- Serial.println();
- #endif
- }
|