|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Servo programming
I'm having trouble trying to program a servo. Everytime I press the button that should make it rotate it does nothing. Any help would be appreciated.
/*----------------------------------------------------------------------------*/ /* Copyright (c) FIRST 2008. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of */ /* the project. */ /*----------------------------------------------------------------------------*/ package edu.wpi.first.wpilibj.templates; import edu.wpi.first.wpilibj.Joystick; import edu.wpi.first.wpilibj.Servo; import edu.wpi.first.wpilibj.SimpleRobot; /** * The VM is configured to automatically run this class, and to call the * functions corresponding to each mode, as described in the SimpleRobot * documentation. If you change the name of this class or the package after * creating this project, you must also update the manifest file in the resource * directory. */ public class RobotTemplate extends SimpleRobot { Servo servo = new Servo(5); Joystick joystick = new Joystick(1); /** * This function is called once each time the robot enters autonomous mode. */ public void autonomous() { } /** * This function is called once each time the robot enters operator control. */ public void operatorControl() { if(joystick.getRawButton(3)) { servo.set(1); } else if(joystick.getRawButton(4)) { servo.set(-1); } } /** * This function is called once each time the robot enters test mode. */ public void test() { } } Last edited by Mr.Roboto3335 : 02-09-2013 at 10:40 AM. Reason: The code was a mess |
|
#2
|
||||
|
||||
|
Re: Servo programming
Code:
public void operatorControl() {
if(joystick.getRawButton(3))
{
servo.set(1);
}
else if(joystick.getRawButton(4))
{
servo.set(-1);
}
}
Code:
while(isOperatorControl()) {
// Code here
}
|
|
#3
|
||||
|
||||
|
Re: Servo programming
You are absolutely correct. I forgot that statement. Servo still won't work. It doesn't even default when I reset the robot. Wiring?
Last edited by Mr.Roboto3335 : 02-09-2013 at 11:40 AM. |
|
#4
|
||||||
|
||||||
|
Re: Servo programming
Also, Servo.set() takes a value from 0 to 1, rather then -1 to 1 like a motor.
You can also use code tags to keep your formatting when posting code. Did you install the servo jumper in the digital sidecar? |
|
#5
|
||||
|
||||
|
Re: Servo programming
No I did not... Found and inserted the jumper and is now working. Thank you!
Last edited by Mr.Roboto3335 : 02-09-2013 at 12:04 PM. |
|
#6
|
|||
|
|||
|
Re: Servo programming
What is a servo jumper? If you could help me with that just pm me. Thanks
![]() |
|
#7
|
||||
|
||||
|
Re: Servo programming
Quote:
http://www.youtube.com/watch?v=RF104...me0nC_xUILWCam |
|
#8
|
|||
|
|||
|
Re: Servo programming
Quote:
|
|
#9
|
||||
|
||||
|
Re: Servo programming
It looks like the picture in the 2013 Kit of Parts black tote checklist revB.
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|