blob: 9d2ade22772484f704cf09fdb2838c0775307ca2 [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 Talon_H
8#define Talon_H
9
10#include "SafePWM.h"
11#include "SpeedController.h"
12#include "PIDOutput.h"
13
14/**
15 * CTRE Talon Speed Controller
16 */
17class Talon : public SafePWM, public SpeedController
18{
19public:
20 explicit Talon(UINT32 channel);
21 Talon(UINT8 moduleNumber, UINT32 channel);
22 virtual ~Talon();
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 InitTalon();
31};
32
33#endif
34