-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathENCODER.cpp
149 lines (127 loc) · 2.59 KB
/
ENCODER.cpp
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#include "ENCODER.h"
//Get TwoWire class
//Wire.begin()
ENCODER::ENCODER(TwoWire* wire)
{
_wire = wire;
}
//Take 2byte data from raw angle and angle
uint16_t ENCODER::ReadData(uint8_t regist)
{
uint16_t recieved_data;
_wire->beginTransmission(ADRESS);
_wire->write(regist);
_wire->endTransmission();
_wire->requestFrom(ADRESS, (uint8_t)2);
while (_wire->available() == 0);
recieved_data += _wire->read();
recieved_data = recieved_data << 8;
while (_wire->available() == 0);
recieved_data += _wire->read();
return recieved_data;
}
//Get angle as arrray of 2 bytes
uint8_t* ENCODER::GetAngleBytes()
{
static uint8_t value[2];
uint16_t data_int;
data_int = ReadData(ANGLE_WIRE_H) & 0x0FFF;
if (ROTATION == 1)
{
data_int = (0x1000 - data_int) & 0x0FFF;
}
value[0] = (data_int >> 8) & 0xFF;
value[1] = data_int & 0xFF;
return value;
}
//Get angle as 2byte int
uint16_t ENCODER::GetAngle()
{
uint16_t data_int;
data_int = ReadData(ANGLE_WIRE_H) & 0x0FFF;
if (ROTATION == 1)
{
data_int = (0x1000 - data_int) & 0x0FFF;
}
return data_int;
}
//Get angle as degrees
uint16_t ENCODER::GetDegrees()
{
uint16_t data = GetAngle();
float degrees = (float)data * ANGLE_TO_DEGREES;
return degrees;
}
//Get raw angle as array of 2 bytes
uint8_t* ENCODER::GetRawAngleBytes()
{
static uint8_t value[2];
uint16_t data_int;
data_int = ReadData(RAW_ANGLE_WIRE_H) & 0x0FFF;
if (ROTATION == 1)
{
data_int = (0x1000 - data_int) & 0x0FFF;
}
value[0] = (data_int >> 8) & 0xFF;
value[1] = data_int & 0xFF;
return value;
}
//Get raw angle as 2byte int
uint16_t ENCODER::GetRawAngle()
{
uint16_t data_int;
data_int = ReadData(RAW_ANGLE_WIRE_H) & 0x0FFF;
if (ROTATION == 1)
{
data_int = (0x1000 - data_int) & 0x0FFF;
}
return data_int;
}
//Get magnet status
//2 - magnet is too strong
//1 - magnet is ok
//0 - magnet is too weak or not detected
int8_t ENCODER::CheckMagnet()
{
uint8_t result;
_wire->beginTransmission(ADRESS);
_wire->write(MAGNET_WIRE);
if (_wire->endTransmission() != 0)
{
return CheckMagnet();
}
_wire->requestFrom(ADRESS, (uint8_t)1);
while (Wire.available() == 0);
result = _wire->read();
switch (result)
{
//ok
case 0x37:
return 0x01;
break;
//strong
case 0x27:
return 0x02;
break;
//weak
case 0x17:
return 0x00;
break;
default:
break;
}
}
//Optional set direction to value
void ENCODER::SetDirection(int dir = 0)
{
if (dir == 0)
{
// TO -
ROTATION = 0;
}
else
{
// TO +
ROTATION = 1;
}
}