Camera Control

What happens to the overflowed balls?

What happens to a radio stations broadcast after I turn my radio off? It's still happening, but it's accomplishing nothing as far as my radio is concerned. The packets are lost.

Are you using UDP in broadcast mode? In general, broadcast mode is much slower than "Hey, you. Yes, you!" mode.

      delay(100);

I guess your need-for-speed isn't all that strong.

      delay(100);

I guess your need-for-speed isn't all that strong.

      Serial.write((byte)packetBuffer[0]); // Synch Byte
      Serial.write((byte)packetBuffer[1]); //Camera Address
      Serial.write((byte)packetBuffer[2]);  
      Serial.write((byte)packetBuffer[3]);
      Serial.write((byte)packetBuffer[4]); //Pan Speed
      Serial.write((byte)packetBuffer[5]); //Tilt Speed

That's one way.

      Serial.write((byte)packetBuffer, 6);

is another.