Hello, we are working on a project with 4 servomotors, its movement is executed with information coming from the serial port. But his movement has some tremor, it seems to be noise when he is reading information. At one point there is data transmission through the serial port, but no command is being executed to move the servos, but even so the servomotors move a bit.
It seems to be noise in the PWM ports when there is constant and fast transmission or receepcion of data through the serial port.
SoftwareSerial miBT(0,1); // pin 10 como RX, pin 11 como TX
It's even twofold: First SoftwareSerial is to be used only if you have no timing critical devices connected and if you have absolutely no other chance. It disables interrupts for long periods of time (during send out and reception of complete bytes) which disturbs things like servos quite seriously.
The second error in the sketch: You put a SoftwareSerial to pins 0/1, where the hardware serial interface is located. You cannot use the same pin for two different things.