mcopy/ino/mcopy_cam_canon/McopySerial.cpp

23 lines
326 B
C++
Raw Normal View History

2023-03-05 00:04:55 +00:00
#include "McopySerial.h"
2023-03-04 23:52:51 +00:00
McopySerial::McopySerial () {
2023-03-04 23:52:51 +00:00
}
void McopySerial::begin () {
Serial.begin(baud);
}
2023-03-04 23:52:51 +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);
}
}