2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00

Fix slight style issues to meet current standards.

This commit is contained in:
Carl Colglazier 2015-03-08 21:27:33 -04:00
parent b5460f9b1e
commit 5663ba3fec
6 changed files with 7 additions and 10 deletions

3
OI.h
View File

@ -7,8 +7,7 @@
/**
* @brief Controls the robot with joysticks
*/
class OI
{
class OI{
private:
Joystick *leftStick, *rightStick;
public:

View File

@ -7,8 +7,7 @@
*
* Uses four motors, two on the sides, one on the bottom, and one on the ramp to collect and eject totes
*/
class Collector: public Subsystem
{
class Collector: public Subsystem{
private:
CANTalon *collectorMotorLeft, //<! Left collector motor
*collectorMotorBottom, //<! Bottom collctor motor

View File

@ -2,8 +2,7 @@
#define PNEUMATICS_H
#include "WPILib.h"
class Pneumatics: public Subsystem
{
class Pneumatics: public Subsystem{
private:
Solenoid *solenoid1, *solenoid2;
public: