WPILibC++  2019.1.1-beta-1-1-g0a2ab4f
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
PWMSpeedController.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) 2008-2018 FIRST. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 
8 #pragma once
9 
10 #include "frc/SafePWM.h"
11 #include "frc/SpeedController.h"
12 
13 namespace frc {
14 
18 class PWMSpeedController : public SafePWM, public SpeedController {
19  public:
21  PWMSpeedController& operator=(PWMSpeedController&&) = default;
22 
31  void Set(double value) override;
32 
38  double Get() const override;
39 
40  void SetInverted(bool isInverted) override;
41 
42  bool GetInverted() const override;
43 
44  void Disable() override;
45 
46  void StopMotor() override;
47 
53  void PIDWrite(double output) override;
54 
55  protected:
62  explicit PWMSpeedController(int channel);
63 
64  void InitSendable(SendableBuilder& builder) override;
65 
66  private:
67  bool m_isInverted = false;
68 };
69 
70 } // namespace frc
Interface for speed controlling devices.
Definition: SpeedController.h:17
WPILib FRC namespace.
Definition: SPIAccelerometerSim.h:18
void InitSendable(SendableBuilder &builder) override
Initializes this Sendable object.
void Set(double value) override
Set the PWM value.
void SetInverted(bool isInverted) override
Common interface for inverting direction of a speed controller.
double Get() const override
Get the recently set value of the PWM.
A safe version of the PWM class.
Definition: SafePWM.h:28
bool GetInverted() const override
Common interface for returning the inversion state of a speed controller.
void StopMotor() override
Stop the motor associated with this PWM object.
Definition: SendableBuilder.h:23
void Disable() override
Common interface for disabling a motor.
Common base class for all PWM Speed Controllers.
Definition: PWMSpeedController.h:18
void PIDWrite(double output) override
Write out the PID value as seen in the PIDOutput base object.