|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#2
|
|||
|
|||
|
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 Code:
motor1 = new Victor(1); #1 is PWM Channel motor2 = new Victor(2); motor3 = new Victor(3); Code:
motor1.set(double); motor2.set(double); motor3.set(double); |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|