diff --git a/notes/nano_softserial/nano_softserial.ino b/notes/nano_softserial/nano_softserial.ino new file mode 100644 index 0000000..d2e5ad0 --- /dev/null +++ b/notes/nano_softserial/nano_softserial.ino @@ -0,0 +1,34 @@ +/** + * + * Camera Remote Menu + * + * + * + * + * + * Camera Settings + * + * + * + * + * + **/ + +#include + +#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(); + } +} +