2023-03-05 00:04:55 +00:00
|
|
|
#include "McopySerial.h"
|
2023-03-04 23:52:51 +00:00
|
|
|
|
2023-03-05 00:25:50 +00:00
|
|
|
McopySerial::McopySerial () {
|
|
|
|
|
2023-03-04 23:52:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void McopySerial::begin () {
|
2023-03-05 00:25:50 +00:00
|
|
|
Serial.begin(baud);
|
|
|
|
}
|
2023-03-04 23:52:51 +00:00
|
|
|
|
2023-03-05 00:25:50 +00:00
|
|
|
void McopySerial::setBaud (int baudRate) {
|
|
|
|
baud = baudRate;
|
2023-03-04 23:52:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void McopySerial::debug (bool state) {
|
|
|
|
debugOn = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void McopySerial::log (String message) {
|
|
|
|
if (debugOn) {
|
|
|
|
Serial.println(message);
|
|
|
|
}
|
|
|
|
}
|