-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pilot.h
47 lines (33 loc) · 1010 Bytes
/
Pilot.h
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
40
41
42
43
44
45
46
47
#ifndef Pilot_h
#define Pilot_h
#include "Config.h"
class Pilot
{
public:
Pilot();
Pilot(byte angle);
void setPins(byte id, byte fwd, byte bwd, byte pwm, int curSens);
void setAngle(byte angle);
void steerMotor(byte id, int power);
void drive();
void drive(int values[]);
void drive(int angle, int power);
void drive(int angle, int power, int rotation);
void calculate(int angle, int power);
void calculate(int angle, int power, int rotation);
void brake(bool activ);
void setMotEn(bool motEn);
bool getMotEn();
void switchMotEn();
private:
byte _fwd[4]; // digitaler PIN fuer Vorwaertsrotation
byte _bwd[4]; // digitaler PIN fuer Rueckwaertsrotation
byte _pwm[4]; // analoger PIN fuer Geschwindigkeit
byte _curSens[4];
int _values[4]; // Zwischenspeicher für Outputsignale
byte _angle;
bool _motEn; // gibt an, ob die Motoren an sind
bool _halfSpeed = false;
int _curr;
};
#endif