Depending on your wiring between the arduino and the ssc-32 (arduino tx to ssc-32 TTL rx, and grounds connected together), you should be able to use this code on the arduino and the arduino serial monitor to send test commands to the ssc-32.
[code]// zoomkat 7-30-11 serial I/O string test
// type a string in serial monitor. then send or enter
// for IDE 0019 and later
String readString;
void setup() {
Serial.begin(9600);
Serial.println(“serial test 0021”); // so I can keep track of what is loaded
}
void loop() {
while (Serial.available()) {
delay(2); //delay to allow byte to arrive in input buffer
char c = Serial.read();
readString += c;
}
if (readString.length() >0) {
Serial.println(readString);
Yeah, I understand that. That’s why I’m stumped that this is not working. I can control each servo independently (with different code), so I know the serial communication is working, but I can’t control more than one. In fact, any time I have more than one servo wired up I have problems, even when controlling them independently.