-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcar_motor.h
89 lines (69 loc) · 1.8 KB
/
car_motor.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifndef _CAR_MOTOR_H_
#define _CAR_MOTOR_H_
#include "car_state.h"
#include <thread>
#include <ctime>
//Leds
#define BACK_LIGHT 15
#define RIGHT_YELLOW_LIGHT 16
#define LEFT_YELLOW_LIGHT 11
//Motors LEFT
#define PWM_1 27
#define PIN_1_1 28 // Connect to IN 1_1
#define PIN_1_2 29 // Connect to IN 1_2
#define PWM_2 23
#define PIN_2_1 24 // Connect to IN 2_1
#define PIN_2_2 25 // Connect to IN 2_2
//Motors RIGHT those go backwards so we correct this by reversing the wires
#define PWM_3 26
#define PIN_3_1 21 // Connect to IN 3_2
#define PIN_3_2 22 // Connect to IN 3_1
#define PWM_4 3
#define PIN_4_1 4 // Connect to IN 4_2
#define PIN_4_2 5 // Connect to IN 4_1
// Pini line follower
const int PIN_FOLLOW_STANGA = 0;
const int PIN_FOLLOW_MIJLOC = 1;
const int PIN_FOLLOW_DREAPTA = 2;
const int PIN_FOLLOW_DREAPTA_FAR = 31;
const int PIN_FOLLOW_STANGA_FAR = 30;
class CarMotor {
public:
enum Direction {
FORWARD = 0,
BACKWARD = 1,
LEFT = 2,
RIGHT = 3,
STOP = 4
};
private:
enum TipCorectie {
STANGA,
DREAPTA,
MIJLOC,
UNKNOWN
};
bool is_turning = 0;
clock_t turn_time;
clock_t last_blink;
bool blink_led_on=false;
bool start_checking=false;
CarState* state;
std::unique_ptr<std::thread> motor_thread;
void SyncronizeState();
void SetDirection (Direction direction);
void SetDirectionLeft (Direction direction);
void SetDirectionRight (Direction direction);
void SetSpeedLeft(int speed);
void SetSpeedRight(int speed);
void BlinkIfNecessary(clock_t current_time, Direction direction);
void ResetBlinks();
int Catch();
TipCorectie GetCorrectionMode();
int thread_on = 1;
public:
CarMotor(CarState* state);
~CarMotor();
void Start();
};
#endif