canon_ble #82

Merged
mattmcw merged 149 commits from canon_ble into main 2023-08-01 03:38:52 +00:00
1 changed files with 22 additions and 0 deletions
Showing only changes of commit 318f931dbf - Show all commits

View File

@ -0,0 +1,22 @@
#include <Arduino.h>
#define RXD2 16
#define TXD2 -1
HardwareSerial Serial2(1);
void setup () {
Serial2.begin(57600, SERIAL_8N1, RXD2, TXD2);
}
void loop () {
now = millis();
if (Serial2.available() > 0) {
//cmdChar = Serial2.read();
}
}