for (int i = 0; i < 2; i++){
Serial.write(IncomingDir[i]);
}
Or
Serial.print(incomingDir);
It would be incredibly handy to convert MotorVal to an int
Like atoi() does?
for (int i = 0; i < 2; i++){
Serial.write(IncomingDir[i]);
}
Or
Serial.print(incomingDir);
It would be incredibly handy to convert MotorVal to an int
Like atoi() does?