mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
SynchronousPID provides a Calculate() function for teams to call themselves instead of running the controller with a Notifier.
25 lines
846 B
C++
25 lines
846 B
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2016-2018 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
|
|
|
|
namespace frc {
|
|
|
|
class PIDInterface {
|
|
virtual void SetPID(double p, double i, double d) = 0;
|
|
virtual double GetP() const = 0;
|
|
virtual double GetI() const = 0;
|
|
virtual double GetD() const = 0;
|
|
|
|
virtual void SetSetpoint(double setpoint) = 0;
|
|
virtual double GetSetpoint() const = 0;
|
|
|
|
virtual void Reset() = 0;
|
|
};
|
|
|
|
} // namespace frc
|