blob: a58abb58350c9557c8f95634646c85a87131850d [file] [log] [blame]
jerrymf1579332013-02-07 01:56:28 +00001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2008. 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 $(WIND_BASE)/WPILib. */
5/*----------------------------------------------------------------------------*/
6
7#ifndef VICTOR_H
8#define VICTOR_H
9
10#include "SafePWM.h"
11#include "SpeedController.h"
12#include "PIDOutput.h"
13
14/**
15 * IFI Victor Speed Controller
16 */
17class Victor : public SafePWM, public SpeedController
18{
19public:
20 explicit Victor(UINT32 channel);
21 Victor(UINT8 moduleNumber, UINT32 channel);
22 virtual ~Victor();
23 virtual void Set(float value, UINT8 syncGroup=0);
24 virtual float Get();
25 virtual void Disable();
26
27 virtual void PIDWrite(float output);
28
29private:
30 void InitVictor();
31};
32
33#endif
34