some change

This commit is contained in:
Dmitry Borisenko
2020-05-19 21:13:54 +02:00
parent 07f439b900
commit 3ea2509b6d
11 changed files with 19 additions and 21 deletions

View File

@@ -474,16 +474,16 @@ void servoSet() {
}
void serialBegin() {
String s_speed = sCmd.next();
//String s_speed = sCmd.next();
//String rxPin = sCmd.next();
//String txPin = sCmd.next();
//SoftwareSerial mySerial(rxPin.toInt(), txPin.toInt());
mySerial.begin(s_speed.toInt());
//mySerial.begin(s_speed.toInt());
}
void serialWrite() {
String text = sCmd.next();
mySerial.println(text);
//String text = sCmd.next();
//mySerial.println(text);
}
//====================================================================================================================================================
/*