Replace IterativeRobot in examples with TimedRobot (#1310)

Fixes #1309.
This commit is contained in:
Tyler Veness
2018-09-19 21:41:08 -07:00
committed by Peter Johnson
parent 59386635e7
commit bedef476fd
36 changed files with 75 additions and 75 deletions

View File

@@ -7,7 +7,7 @@
#pragma once
#include <frc/IterativeRobot.h>
#include <frc/TimedRobot.h>
#include <frc/commands/Command.h>
#include <frc/smartdashboard/SendableChooser.h>
@@ -20,7 +20,7 @@
#include "subsystems/Pneumatics.h"
#include "subsystems/Shooter.h"
class Robot : public frc::IterativeRobot {
class Robot : public frc::TimedRobot {
public:
static DriveTrain drivetrain;
static Pivot pivot;