blob: 2dbcb205fa8426fc9ae1029bb167d73b71338f25 [file] [log] [blame]
Brian Silvermanf7f267a2017-02-04 16:16:08 -08001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2008-2017. 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 "PWMSpeedController.h"
11
12namespace frc {
13
14/**
15 * Vex Robotics Victor 888 Speed Controller
16 *
17 * The Vex Robotics Victor 884 Speed Controller can also be used with this
18 * class but may need to be calibrated per the Victor 884 user manual.
19 */
20class Victor : public PWMSpeedController {
21 public:
22 explicit Victor(int channel);
23 virtual ~Victor() = default;
24};
25
26} // namespace frc