2013-12-15 18:30:16 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2018-01-02 09:20:21 -08:00
|
|
|
/* Copyright (c) 2008-2018 FIRST. All Rights Reserved. */
|
2013-12-15 18:30:16 -05:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
2016-01-02 03:02:34 -08:00
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
2013-12-15 18:30:16 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2016-01-02 03:02:34 -08:00
|
|
|
|
2014-05-02 17:54:01 -04:00
|
|
|
#pragma once
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2018-11-22 21:15:26 -08:00
|
|
|
#include "frc/PWM.h"
|
2018-07-20 00:03:45 -07:00
|
|
|
#include "frc/SpeedController.h"
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2016-11-01 22:33:12 -07:00
|
|
|
namespace frc {
|
|
|
|
|
|
2013-12-15 18:30:16 -05:00
|
|
|
/**
|
|
|
|
|
* Standard hobby style servo.
|
2014-06-13 17:45:10 -04:00
|
|
|
*
|
2015-06-25 15:07:55 -04:00
|
|
|
* The range parameters default to the appropriate values for the Hitec HS-322HD
|
2017-11-16 00:33:51 -08:00
|
|
|
* servo provided in the FIRST Kit of Parts in 2008.
|
2013-12-15 18:30:16 -05:00
|
|
|
*/
|
2018-11-22 21:15:26 -08:00
|
|
|
class Servo : public PWM {
|
2015-06-25 15:07:55 -04:00
|
|
|
public:
|
2018-05-31 20:47:15 -07:00
|
|
|
/**
|
|
|
|
|
* @param channel The PWM channel to which the servo is attached. 0-9 are
|
|
|
|
|
* on-board, 10-19 are on the MXP port
|
|
|
|
|
*/
|
2016-09-06 00:01:45 -07:00
|
|
|
explicit Servo(int channel);
|
2018-05-31 20:47:15 -07:00
|
|
|
|
2018-09-24 00:08:25 -07:00
|
|
|
Servo(Servo&&) = default;
|
|
|
|
|
Servo& operator=(Servo&&) = default;
|
|
|
|
|
|
2018-05-31 20:47:15 -07:00
|
|
|
/**
|
|
|
|
|
* Set the servo position.
|
|
|
|
|
*
|
|
|
|
|
* Servo values range from 0.0 to 1.0 corresponding to the range of full left
|
|
|
|
|
* to full right.
|
|
|
|
|
*
|
|
|
|
|
* @param value Position from 0.0 to 1.0.
|
|
|
|
|
*/
|
2016-11-20 07:25:03 -08:00
|
|
|
void Set(double value);
|
2018-05-31 20:47:15 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the servo to offline.
|
|
|
|
|
*
|
|
|
|
|
* Set the servo raw value to 0 (undriven)
|
|
|
|
|
*/
|
2015-06-25 15:07:55 -04:00
|
|
|
void SetOffline();
|
2018-05-31 20:47:15 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the servo position.
|
|
|
|
|
*
|
|
|
|
|
* Servo values range from 0.0 to 1.0 corresponding to the range of full left
|
|
|
|
|
* to full right.
|
|
|
|
|
*
|
|
|
|
|
* @return Position from 0.0 to 1.0.
|
|
|
|
|
*/
|
2016-11-20 07:25:03 -08:00
|
|
|
double Get() const;
|
2018-05-31 20:47:15 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the servo angle.
|
|
|
|
|
*
|
|
|
|
|
* Assume that the servo angle is linear with respect to the PWM value (big
|
|
|
|
|
* assumption, need to test).
|
|
|
|
|
*
|
|
|
|
|
* Servo angles that are out of the supported range of the servo simply
|
|
|
|
|
* "saturate" in that direction. In other words, if the servo has a range of
|
|
|
|
|
* (X degrees to Y degrees) than angles of less than X result in an angle of
|
|
|
|
|
* X being set and angles of more than Y degrees result in an angle of Y being
|
|
|
|
|
* set.
|
|
|
|
|
*
|
|
|
|
|
* @param degrees The angle in degrees to set the servo.
|
|
|
|
|
*/
|
2016-11-20 07:25:03 -08:00
|
|
|
void SetAngle(double angle);
|
2018-05-31 20:47:15 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the servo angle.
|
|
|
|
|
*
|
|
|
|
|
* Assume that the servo angle is linear with respect to the PWM value (big
|
|
|
|
|
* assumption, need to test).
|
|
|
|
|
*
|
|
|
|
|
* @return The angle in degrees to which the servo is set.
|
|
|
|
|
*/
|
2016-11-20 07:25:03 -08:00
|
|
|
double GetAngle() const;
|
2018-05-31 20:47:15 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the maximum angle of the servo.
|
|
|
|
|
*
|
|
|
|
|
* @return The maximum angle of the servo in degrees.
|
|
|
|
|
*/
|
|
|
|
|
double GetMaxAngle() const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the minimum angle of the servo.
|
|
|
|
|
*
|
|
|
|
|
* @return The minimum angle of the servo in degrees.
|
|
|
|
|
*/
|
|
|
|
|
double GetMinAngle() const;
|
2014-05-02 17:54:01 -04:00
|
|
|
|
2017-12-04 23:28:33 -08:00
|
|
|
void InitSendable(SendableBuilder& builder) override;
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2015-06-25 15:07:55 -04:00
|
|
|
private:
|
2018-05-31 20:47:15 -07:00
|
|
|
double GetServoAngleRange() const;
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2016-11-20 07:25:03 -08:00
|
|
|
static constexpr double kMaxServoAngle = 180.0;
|
|
|
|
|
static constexpr double kMinServoAngle = 0.0;
|
2014-05-30 14:19:57 -04:00
|
|
|
|
2016-11-20 07:25:03 -08:00
|
|
|
static constexpr double kDefaultMaxServoPWM = 2.4;
|
|
|
|
|
static constexpr double kDefaultMinServoPWM = .6;
|
2013-12-15 18:30:16 -05:00
|
|
|
};
|
2016-11-01 22:33:12 -07:00
|
|
|
|
|
|
|
|
} // namespace frc
|