ESP8266 WiFi Participant
Loading...
Searching...
No Matches
debug.h
1#pragma once
2
3#include <Arduino.h>
4
5#ifdef DEBUG
6#define DEBUG_PRINT(x) Serial.print(x)
7#define DEBUG_PRINTLN(x) Serial.println(x)
8#else
9#define DEBUG_PRINT(x)
10#define DEBUG_PRINTLN(x)
11#endif
12
13void initDebugging();