Maker Pro
Maker Pro

Will the Arduino softwareSerial and Servo libraries produce interrupt clashes?

Hi All, i'm panning a project using the arduino uno which i own. I would need to control servos and have an additional UART serial port. I am aware that this is easy enough to do with the software serial library. Will this produce interrupt clashes with the servo library? If so what are some practice ways of resolving the issue.
 

(*steve*)

¡sǝpodᴉʇuɐ ǝɥʇ ɹɐǝɥd
Moderator
Presumably the best way us to use the UART rather than software serial support. That way you're least likely to disrupt (or be disrupted) by any funny business the other library is doing.
 
Top