diff --git a/Commands/Collector/RollOut.cpp b/Commands/Collector/RollOut.cpp index d9a696a..bc54cdf 100644 --- a/Commands/Collector/RollOut.cpp +++ b/Commands/Collector/RollOut.cpp @@ -7,7 +7,7 @@ void RollOut::Initialize(){ } void RollOut::Execute(){ //TODO check this value to move the motors in the right direction - // Devide by 2 twice because this speed should be half the collector speed + // Divide by 2 twice because this speed should be half the collector speed DentRobot::collector->MoveRollers(-DentRobot::oi->GetLeftThrottle() * 0.8); SmartDashboard::PutNumber("DriveThrottle", -DentRobot::oi->GetLeftThrottle()); } diff --git a/Commands/Elevator/Lower.cpp b/Commands/Elevator/Lower.cpp index 54f26f2..c79b19c 100644 --- a/Commands/Elevator/Lower.cpp +++ b/Commands/Elevator/Lower.cpp @@ -11,7 +11,7 @@ void Lower::Execute(){ } bool Lower::IsFinished(){ if(!DentRobot::elevator->GetElevatorBottom()||IsTimedOut()){ - printf("Robot stoped lowering. Sensor based? %d\n", !DentRobot::elevator->GetElevatorBottom()); + printf("Robot stopped lowering. Sensor based? %d\n", !DentRobot::elevator->GetElevatorBottom()); return true; }else{ return false; diff --git a/DentRobot.h b/DentRobot.h index 5519df6..6898ef1 100644 --- a/DentRobot.h +++ b/DentRobot.h @@ -29,7 +29,7 @@ class DentRobot: public IterativeRobot{ */ static OI* oi; /** - * @brief The 4-motor Collctor + * @brief The 4-motor Collector */ static Collector* collector; /** diff --git a/Subsystems/BinElevator.h b/Subsystems/BinElevator.h index 3ff85a6..5923c4d 100644 --- a/Subsystems/BinElevator.h +++ b/Subsystems/BinElevator.h @@ -11,7 +11,7 @@ class BinElevator{ CANTalon *motor; //