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 34 additions and 0 deletions
Showing only changes of commit f73a1e3931 - Show all commits

View File

@ -0,0 +1,34 @@
/**
*
* Camera Remote Menu
*
*
*
*
*
* Camera Settings
*
*
*
*
*
**/
#include <SoftwareSerial.h>
#define SOFTWARE_RX 10
#define SOFTWARE_TX 11
SoftwareSerial softPort(SOFTWARE_RX, SOFTWARE_TX);
void setup () {
softPort.begin(57600);
}
void loop () {
if (softPort.available() > 0) {
//sChar = softPort.read();
}
}