View Single Post
  #23   Spotlight this post!  
Unread 09-06-2015, 17:34
AdamHeard's Avatar
AdamHeard AdamHeard is offline
Lead Mentor
FRC #0973 (Greybots)
Team Role: Mentor
 
Join Date: Oct 2004
Rookie Year: 2004
Location: Atascadero
Posts: 5,506
AdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond reputeAdamHeard has a reputation beyond repute
Send a message via AIM to AdamHeard
Re: Arduino Micro with Talon SR

Quote:
Originally Posted by SuperBK View Post
You can also specify the servo min and max pulse widths in the attach call:

Servo driveServo;
driveServo.attach(3, 1000, 2000); // TALON // widths are in micro-seconds

Then use servo.Write() 0 is reverse, 90 is stop, and 180 is full forward.
Why do this versus explicitly writing the 1000 to 2000 range?