nano softserial note

This commit is contained in:
Matt McWilliams 2023-07-03 22:35:29 -04:00
parent f958789b20
commit f73a1e3931
1 changed files with 34 additions and 0 deletions

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();
}
}