canon_ble #82
|
@ -0,0 +1,20 @@
|
||||||
|
#include "mcopy_serial.h"
|
||||||
|
|
||||||
|
void McopySerial::begin (int baudRate) {
|
||||||
|
baud = baudRate;
|
||||||
|
begin();
|
||||||
|
}
|
||||||
|
|
||||||
|
void McopySerial::begin () {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void McopySerial::debug (bool state) {
|
||||||
|
debugOn = state;
|
||||||
|
}
|
||||||
|
|
||||||
|
void McopySerial::log (String message) {
|
||||||
|
if (debugOn) {
|
||||||
|
Serial.println(message);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
#ifndef MCOPY_SERIAL
|
||||||
|
#define MCOPY_SERIAL
|
||||||
|
|
||||||
|
#include "Arduino.h"
|
||||||
|
|
||||||
|
class McopySerial {
|
||||||
|
|
||||||
|
private:
|
||||||
|
volatile int baud = 57600;
|
||||||
|
volatile bool debugOn = false;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void begin();
|
||||||
|
void begin(int baudRate);
|
||||||
|
|
||||||
|
void debug (bool state);
|
||||||
|
void log (String message);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
|
@ -1 +1,2 @@
|
||||||
debug*
|
debug*
|
||||||
|
bin
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "CanonBLERemote.h"
|
#include "CanonBLERemote.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include "TickTwo.h"
|
#include "TickTwo.h"
|
||||||
|
#include "mcopy_serial.h"
|
||||||
|
|
||||||
#define LOG_LOCAL_LEVEL ESP_LOG_INFO
|
#define LOG_LOCAL_LEVEL ESP_LOG_INFO
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
ino/lib/mcopy_serial/mcopy_serial.cpp
|
|
@ -0,0 +1 @@
|
||||||
|
ino/lib/mcopy_serial/mcopy_serial.h
|
Loading…
Reference in New Issue