Arduino Uno+SKPS+SC16A

Hi,
Is it possible to connect the Arduino Uno with SKPS and SC16A Servo Controller alltogether?
Is it possible to connect the Arduino Uno with SKPS and SC16A Servo Controller alltogether?
billykoe WROTE:Hi,
Is it possible to connect the Arduino Uno with SKPS and SC16A Servo Controller alltogether?
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX for first application
SoftwareSerial myserial2(12,13); // RX,TX for second application
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(57600);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}
Serial.println("Goodnight moon!");
// set the data rate for the SoftwareSerial port
mySerial.begin(4800);
mySerial2.begin(4800);
void loop()
{
//receive and transmit functions
}