Skip to content
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

feature request: Servo class: servo.write(angle, rotationspeed) #10245

Closed
dsyleixa opened this issue May 19, 2020 · 5 comments
Closed

feature request: Servo class: servo.write(angle, rotationspeed) #10245

dsyleixa opened this issue May 19, 2020 · 5 comments
Labels
feature request A request to make an enhancement (not a bug fix) Library: Servo The Servo Arduino library Type: Duplicate Another item already exists for this topic

Comments

@dsyleixa
Copy link

dsyleixa commented May 19, 2020

feature request: Servo class: servo.write(int angle, float rotationspeed)
angle: degrees (endpoint)
rotationspeed: degrees per second
e.g.,

servo.write(90); // let the servo move to position 90° immediately
delay(1000);
servo.write(180, 10.0); // moves the servo from the current position (90°) to position 180° by a rotation speed of 10°/sec

The function must not be blocking, so that a following command can be started immediately before the further movement has been finished (simultaneous movement)

servo1.write(180, 10.0);
servo2.write(45, 5.0);

@dsyleixa dsyleixa changed the title feature request: servo class: servo.write(angle, rotationspeed) feature request: Servo class: servo.write(angle, rotationspeed) May 19, 2020
@per1234 per1234 added feature request A request to make an enhancement (not a bug fix) Library: Servo The Servo Arduino library labels May 19, 2020
@ernesto-tapia
Copy link

Hello,
I would like to work on this feature request, is it still available?

@dsyleixa
Copy link
Author

dsyleixa commented Jun 3, 2020

yes, just make a pull request (PR)!

@ernesto-tapia
Copy link

This was a little bit too much for my current level, and Im not sure that non blocking can be achieved without the use of another update function running in the code. @per1234, do you have any insight on how I can possibly attack this issue?

@dsyleixa
Copy link
Author

no one to achieve this...?

@dsyleixa
Copy link
Author

dsyleixa commented Jan 24, 2021

I'll close it here and move it to github Servo lib issue tracker: arduino-libraries/Servo#71

@per1234 per1234 added the Type: Duplicate Another item already exists for this topic label Jan 24, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request A request to make an enhancement (not a bug fix) Library: Servo The Servo Arduino library Type: Duplicate Another item already exists for this topic
Projects
None yet
Development

No branches or pull requests

3 participants