-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebugLog.cpp
69 lines (56 loc) · 1.28 KB
/
debugLog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//////////////////////////////////////////////////////////////////////////////
/*
debugLog.cpp
A wrapper for making `Serial.print??()` calls. Allows for programmatic
muting of output.
*/
#include <ESP8266WiFi.h>
#include "debugLog.h"
/*
Use this constructor when you've already called
`Serial.begin()`.
*/
debugLog::debugLog(bool mute) {
isMuted = mute;
}
/*
Use this one when you want this class to
initialize serial communication.
*/
debugLog::debugLog(int baud, bool mute) {
isMuted = mute;
Serial.begin(baud);
}
/*
Various output functions
*/
void debugLog::print(String message) {
if(!isMuted) Serial.print(message);
}
void debugLog::print(int value) {
if(!isMuted) Serial.print(value);
}
void debugLog::println(String message) {
if(!isMuted) Serial.println(message);
}
void debugLog::println(int value) {
if(!isMuted) Serial.println(value);
}
void debugLog::println() {
if(!isMuted) Serial.println();
}
/*
Mute control, toggle the current state, set it
explicitly, or retrieve the current mute setting.
*/
bool debugLog::togglemute() {
isMuted = !isMuted;
return isMuted;
}
bool debugLog::setmute(bool mute) {
isMuted = mute;
return isMuted;
}
bool debugLog::getmute() {
return isMuted;
}