1 (edited by bimosora3 2021-06-23 07:41:28)

Topic: My serial software settings are different from remotexy

I have serial software settings like this, can it be applied to remotexy. My serial software is already working on some code but remotexy implements using #define, can it be changed from define to the one I have?

#include <SoftwareSerial.h>

// SoftwareSerial mySerialOne(PA6, PA7); // RX, TX
SoftwareSerial mySerialTwo(PA2, PA3); // RX, TX
// SoftwareSerial mySerialThree(PB11, PB10); // RX, TX

void setup() {
  // mySerialOne.begin(9600);
  mySerialTwo.begin(9600);
  // mySerialThree.begin(9600);
  Serial.begin(9600);
}

void loop() {

}

2

Re: My serial software settings are different from remotexy

If your software serial number is already in use for something else, it cannot be used for RemoteXY.