mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
18 lines
413 B
C++
18 lines
413 B
C++
#ifndef ELEVATOR_H
|
|
#define ELEVATOR_H
|
|
|
|
#include "WPILib.h"
|
|
#include "Commands/PIDSubsystem.h"
|
|
class Elevator/*: public PIDSubsystem*/{
|
|
private:
|
|
AnalogPotentiometer *pot;
|
|
Talon *leftMotor, *rightMotor;
|
|
static constexpr double kP_real=4, kI_real=.0f, kP_simulation=18, kI_simulation=.2;
|
|
public:
|
|
Elevator();
|
|
void InitDefaultCommand();
|
|
float GetPotValue();
|
|
void Run(double);
|
|
};
|
|
#endif
|