Thread: C++ Functions
View Single Post
  #5   Spotlight this post!  
Unread 31-01-2009, 01:40
virtuald's Avatar
virtuald virtuald is offline
RobotPy Guy
AKA: Dustin Spicuzza
FRC #1418 (), FRC #1973, FRC #4796, FRC #6367 ()
Team Role: Mentor
 
Join Date: Dec 2008
Rookie Year: 2003
Location: Boston, MA
Posts: 1,050
virtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant futurevirtuald has a brilliant future
Re: C++ Functions

If you're using the SimpleRobot demo, then you would use the instance of the Joystick class to retrieve the value of the Joystick.

Code:
// assuming that there is an instance of the Joystick class called 'stick' in the current scope
float some_X = stick.GetX();
float some_Y = stick.GetY();
However, if you glance at how the joystick values are translated to motor speed (see RobotDrive.cpp), its probably not the stick values you want to look at, you'll want to look at the motor values -- which is harder if you use their RobotDrive class, which doesn't allow you to easily access the motor values unless you create the speed controller classes outside the RobotDrive class and pass it in through the constructor of RobotDrive. For this reason, we chose to write our own RobotDrive-like class.

Reading the WPILib source code is the best way to understand how things work underneath.
__________________
Maintainer of RobotPy - Python for FRC
Creator of pyfrc (Robot Simulator + utilities for Python) and pynetworktables/pynetworktables2js (NetworkTables for Python & Javascript)

2017 Season: Teams #1973, #4796, #6369
Team #1418 (remote mentor): Newton Quarterfinalists, 2016 Chesapeake District Champion, 2x Innovation in Control award, 2x district event winner
Team #1418: 2015 DC Regional Innovation In Control Award, #2 seed; 2014 VA Industrial Design Award; 2014 Finalists in DC & VA
Team #2423: 2012 & 2013 Boston Regional Innovation in Control Award


Resources: FIRSTWiki (relaunched!) | My Software Stuff
Reply With Quote