![]() |
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() { } } |
Re: Servo programming
Code:
public void operatorControl() {Code:
while(isOperatorControl()) { |
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?
|
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? |
Re: Servo programming
Quote:
|
Re: Servo programming
What is a servo jumper? If you could help me with that just pm me. Thanks :)
|
Re: Servo programming
Quote:
http://www.youtube.com/watch?v=RF104...me0nC_xUILWCam |
Re: Servo programming
Quote:
|
Re: Servo programming
Quote:
|
| All times are GMT -5. The time now is 10:07. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi