Hi
I need to use 2 Dual Motor TinyShield boards. According to the docs I need to remove a resistor in one of the boards (i.e. R1) The resistors are tiny and I do not wan to damage the board. Is this correct?
Also, how should I declare the motors in the second board, something like:
MotorDriver motor(0);
MotorDriver motor1(1);
// Motor1 board 0
motor.setMotor(1,i);
// Motor2 board 0
motor.setMotor(2,i);
// Motor1 board 1
motor1.setMotor(1,i);
// Motor2 board 1
motor1.setMotor(2,i);
Thanks