mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[docs] Add missing JavaDocs (#6146)
This commit is contained in:
@@ -139,9 +139,16 @@ class ProfiledPIDCommand
|
||||
frc::ProfiledPIDController<Distance>& GetController() { return m_controller; }
|
||||
|
||||
protected:
|
||||
/// Profiled PID controller.
|
||||
frc::ProfiledPIDController<Distance> m_controller;
|
||||
|
||||
/// Measurement getter.
|
||||
std::function<Distance_t()> m_measurement;
|
||||
|
||||
/// Goal getter.
|
||||
std::function<State()> m_goal;
|
||||
|
||||
/// Profiled PID controller output consumer.
|
||||
std::function<void(double, State)> m_useOutput;
|
||||
};
|
||||
} // namespace frc2
|
||||
|
||||
Reference in New Issue
Block a user