mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
|
|
/*----------------------------------------------------------------------------*/
|
||
|
|
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
|
||
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
||
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
||
|
|
/* the project. */
|
||
|
|
/*----------------------------------------------------------------------------*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <frc/controller/ArmFeedforward.h>
|
||
|
|
#include <frc2/command/TrapezoidProfileSubsystem.h>
|
||
|
|
#include <units/units.h>
|
||
|
|
|
||
|
|
#include "ExampleSmartMotorController.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
* A robot arm subsystem that moves with a motion profile.
|
||
|
|
*/
|
||
|
|
class ArmSubsystem : public frc2::TrapezoidProfileSubsystem<units::radians> {
|
||
|
|
using State = frc::TrapezoidProfile<units::radians>::State;
|
||
|
|
|
||
|
|
public:
|
||
|
|
ArmSubsystem();
|
||
|
|
|
||
|
|
void UseState(State setpoint) override;
|
||
|
|
|
||
|
|
private:
|
||
|
|
ExampleSmartMotorController m_motor;
|
||
|
|
frc::ArmFeedforward m_feedforward;
|
||
|
|
};
|