Thread: WPILib source?
View Single Post
  #1   Spotlight this post!  
Unread 10-01-2012, 13:03
UriF UriF is offline
Registered User
FRC #2213
 
Join Date: Jan 2012
Location: Israel
Posts: 27
UriF is an unknown quantity at this point
WPILib source?

Hello.

[+] Is it possible to obtain the WPILIB source for C++?

[+] On another note, I have this motor connected through a Jaguar.
I've been able to control this motor using the ArcadeDrive function and a Joystick.

I want to control this motor independently, so I decided to use the Jaguar class instead and use the Jaguar::Set() function and Joystick::GetY() to control it,
as in
Code:
Jaguar myJag(1);
Joystick myStick(1);

myJag.Set(myStick.GetY());
But it appears that it doesn't do anything, and I'm pretty sure I'm specifying the correct ports.
Obviously I would have been able to resolve this problem if i had the WPILib source and checked out the ArcadeDrive function..

Thanks in advance.