mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Base.h provides a backwards compatibility shim (enabled unless NAMESPACED_WPILIB is defined) that does a "using namespace frc". However, as some header files do not include Base.h, this may be a breaking change in some corner cases (with an easy fix). Fixes #218.
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2016. 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 "Base.h"
|
|
#include "Controller.h"
|
|
#include "LiveWindow/LiveWindow.h"
|
|
|
|
namespace frc {
|
|
|
|
class PIDInterface : public Controller {
|
|
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(float setpoint) = 0;
|
|
virtual double GetSetpoint() const = 0;
|
|
|
|
virtual void Enable() = 0;
|
|
virtual void Disable() = 0;
|
|
virtual bool IsEnabled() const = 0;
|
|
|
|
virtual void Reset() = 0;
|
|
};
|
|
|
|
} // namespace frc
|