View Single Post
  #1   Spotlight this post!  
Unread 12-06-2012, 23:20
Brian Selle's Avatar
Brian Selle Brian Selle is offline
Mentor
FRC #3310 (Black Hawk Robotics)
Team Role: Engineer
 
Join Date: Jan 2012
Rookie Year: 2012
Location: Texas
Posts: 162
Brian Selle has a spectacular aura aboutBrian Selle has a spectacular aura aboutBrian Selle has a spectacular aura about
Thumbs down Java Servo Issue

This all seems so simple... but we've been unsuccessful getting a servo working in our Java code. We are using a Hitec HS-475HB servo attached to a PWM port on the digital sidecar. We've tripled checked PWM port number and it is correct. I don't have the code with me but here is basically what we are doing:

1) Created a new subsystem class for the servo

2) In the constructor we instance a Servo class using the PWM port as the argument:

m_myServo = new Servo(2);

3) In a method called MoveMyServo() we call

m_myServo.setAngle(20); // actually we increment the previous value by 20

4) We've tried called setPostion() and set() with no joy but after looking through Servo class all these methods eventually call setPosition() with a value from 0-1.

5) Put print statements and stepped through the debugger to verify that the constructor is being called (without errors) and the MoveMyServo() method gets called each time the button is pressed.

In the Servo class it mentions it is set up for a Hitec HS-322HD... does that matter? Are we missing something here?
Reply With Quote