Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Java (http://www.chiefdelphi.com/forums/forumdisplay.php?f=184)
-   -   Examples for running motors/victors outside of a RobotDrive object? (http://www.chiefdelphi.com/forums/showthread.php?t=113788)

Tsarlowland 17-02-2013 16:04

Examples for running motors/victors outside of a RobotDrive object?
 
Hello all!

I was wondering if any of you could show some examples of multiple motors running.

An example of what I am looking for could be that there are 4 motors -- left, right, launcher, and loader.

When initializing the RobotDrive object that controls the drive base, I understand that would be done like:
drive = new RobotDrive(left, right);

How would you control the launcher and loader speed controllers? My experience with victorName.set(double speed) is that it doesn't work.

I think that seeing even a basic example would give me the clarification I need to be able to complete my teams bot, so any help is appreciated.

Thanks again for your help!
~Altan

ProgrammerMatt 18-02-2013 09:55

Re: Examples for running motors/victors outside of a RobotDrive object?
 
under your public class you should have,
Code:

Victor motor1, motor2, motor3; #and so on
In your robot init you should have,
Code:

motor1 = new Victor(1); #1 is PWM Channel
motor2 = new Victor(2);
motor3 = new Victor(3);

In your teleop code
Code:

motor1.set(double);
motor2.set(double);
motor3.set(double);


Tsarlowland 18-02-2013 19:38

Re: Examples for running motors/victors outside of a RobotDrive object?
 
It ended up being a problem on the digital sidecar caused by metal shavings inside. We cleared up the problem.

Thanks for the help, though.


All times are GMT -5. The time now is 10:06.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi