2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2019-12-29 16:02:49 -05:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-09-14 23:56:48 -04:00
|
|
|
#include <frc2/command/SubsystemBase.h>
|
2019-12-29 16:02:49 -05:00
|
|
|
|
2023-09-14 23:56:48 -04:00
|
|
|
class ReplaceMeSubsystem2 : public frc2::SubsystemBase {
|
2019-12-29 16:02:49 -05:00
|
|
|
public:
|
|
|
|
|
ReplaceMeSubsystem2();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Will be called periodically whenever the CommandScheduler runs.
|
|
|
|
|
*/
|
2020-12-28 00:10:13 -08:00
|
|
|
void Periodic() override;
|
2019-12-29 16:02:49 -05:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
// Components (e.g. motor controllers and sensors) should generally be
|
|
|
|
|
// declared private and exposed only through public methods.
|
|
|
|
|
};
|