-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClaw.h
More file actions
39 lines (27 loc) · 855 Bytes
/
Claw.h
File metadata and controls
39 lines (27 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#pragma once
#include <frc2/command/SubsystemBase.h>
class Claw : public frc2::SubsystemBase {
public:
Claw();
~Claw();
bool Init();
bool ResetPositionEncoder();
bool ResetPositionPID();
bool SetPosition();
bool Reset();
/**
* Will be called periodically whenever the CommandScheduler runs.
*/
void Periodic() override;
/**
* Will be called periodically whenever the CommandScheduler runs during
* simulation.
*/
void SimulationPeriodic() override;
private:
// Components (e.g. motor controllers and sensors) should generally be
// declared private and exposed only through public methods.
};