Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mininuke69 authored Jan 31, 2023
1 parent 0a0420a commit 87d3969
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions scannerbarbier.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#include <SoftwareSerial.h>

SoftwareSerial ss(3, 2); // RX, TX


void setup() {
Serial.begin(9600);
ss.begin(9600);
delay(1000);
Serial.println("pronto");
}


void loop() {
if (ss.available()) {
Serial.write(ss.read());
} +

}

0 comments on commit 87d3969

Please sign in to comment.