* The constructor creates all of the objects used for the different inputs and outputs of
* the robot. Essentially, the constructor defines the input/output mapping for the robot,
* providing named objects for each of the robot interfaces.
*/
public newarkBreakaway() {
m_robotDrive = new RobotDrive(1, 3, 2, 4);// Create a robot using right/left robot drive on PWMs 1-4
// Acquire the Driver Station object
m_ds = DriverStation.getInstance();
m_priorPacketNumber = 0;
m_dsPacketsReceivedInCurrentSecond = 0;