-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to change the Timers used? #14
Comments
Thank's, it's very informative! But I'm having a hard time understanding how to use that to stop the Servo library from using a specific timer |
you need to use another timer or what? |
The problem was almost 2 years ago, so I don't remember the specifics. What I do remember is that the first timer used by this library was interfering with some pins that I needed to use to send a PWM signal. So I ended up modifying the library, by removing the line |
Hi! I think it should be like this:
Found here. Best regards. |
I need to disable and/or change the sequence in which timers are used.
I know how to modify the library to do it, but it's really bothersome to carry a copy of the modified library wherever I go.
I think it's possible to make the Timers opt-out by specifying in the
.ino
file something like#define doNotUseTimer5
before including the library, and use a#ifndef doNotUseTimer5
to omit lines where Timer5 is defined.I may do the Pull Request I just described, but I don't know if there already exist something to disable a specific timer, because I see this defined in the source
#define _useTimer5
but I don't know how it works or how to use it outside of the library to disable a timerThe text was updated successfully, but these errors were encountered: