-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelperFunctions.ino
175 lines (154 loc) · 4.13 KB
/
helperFunctions.ino
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
//////////////////////////////////////////////////////////////////////////////
bool CheckforValidity(byte* array1) {
int arrayLength = array1[0];
if (arrayLength > 10) {
int count = 0;
for (int i = 1; i < arrayLength; i++) {
byte currval = array1[i];
if (currval == 1) {
count = count + 1;
}
}
if (count > 2) {
return false;
} else {
return true;
}
} else {
return false;
}
}
///// Compare two arrays with abit of built in hysteresis /////
// todo: variable hysteresis
bool compare_arrays(byte* array1, byte* array2) {
//Serial.println("compare array");
int length1 = array1[0];
int length2 = array2[0];
int count = 0;
//byte currVal = 0xFF;
//byte lastVal = 0xFF;
//if (length1 == length2) {
for (int i = 1; i < length1; i++) {
if (array1[i] == array2[i]) {
} else {
if (array1[i] == array2[i] + 1) {
} else {
if (array1[i] == array2[i] + 2) {
//stop
} else {
if (array1[i] == array2[i] - 1) {
} else {
if (array1[i] == array2[i] - 2) {
//Serial.println("Checking byte" + String(i));
} else {
count = count + 1;
}
}
}
}
}
}
// return true;
// Serial.println("true");
// }
// return false;
//Serial.println("false");
Serial.print("Count is:");
Serial.println(count);
if (count > 1) {
return false;
} else {
return true;
}
}
///////////////////////////////////////////////////////////////////////
/////////////////////Print in Human Readable Format/////////////////////
void printDataHuman(byte* inputArray) {
byte char1 = 45;
int arrayLength = inputArray[0];
boolean state = true;
for (int i = 1; i < arrayLength - 1; i++) {
byte counter = inputArray[i];
for (int j = 0; j < counter; j++) {
if (state == true) {
Serial.print("`");
} else {
Serial.print(".");
}
}
state = !state;
Serial.print("|");
}
Serial.println("");
}
void printDataHuman_old(byte* inputArray) {
int arrayLength = inputArray[0];
byte byte1 = 0;
byte byte2 = 0;
for (int i = 1; i < (arrayLength - 2); i++) {
byte1 = inputArray[i];
byte2 = inputArray[i + 1];
if (byte1 == 0 && byte2 == 0) {
Serial.print("_");
} else {
if (byte1 == 1 && byte2 == 1) {
Serial.print("¯");
} else {
if ((byte1 == 0 && byte2 == 1) || (byte1 == 1 && byte2 == 0))
Serial.print("|");
}
}
}
}
////////////////////////////////////////////////////////////////////////
/////////////////////Prints an Array Byte wise/////////////////////
void printDataByte(byte* inputArray, int arraysize) {
//Serial.print("Recieved IR Packet:");
Serial.print("{");
for (int i = 0; i < arraysize; i++) {
Serial.print(inputArray[i]);
if (i < arraysize - 1) {
Serial.print(",");
} else {
Serial.println("}");
}
}
//Serial.println("");
}
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
bool checkForData(byte* inputArray, byte arraysize, bool printArray) {
int i = 0;
byte lastValue = 0xFF;
byte currValue = 0xFF;
for (i = 0; i < arraysize - 1; i++) {
currValue = lastValue & inputArray[i];
lastValue = currValue;
}
//Serial.println(currValue);
//if(currValue<255){
if (printArray == true) {
//printDataBits();
}
//byte nextStep[recvBuff];
//nextStep==irDataIn;
//clipData(nextStep);
//}
return true;
}
/////////////////////////////////////////////////////////////////////
/////////////////////Prints Input Array bit-wise/////////////////////
void printDataBits(byte* inputArray, int arrayLength) {
Serial.print("Recieved Packet:");
for (int i = 0; i < arrayLength; i++) {
for (int j = 0; j <= 7; j++) {
byte currByte = inputArray[i];
Serial.print(bitRead(currByte, j));
//Serial.print("0x");
//Serial.print(inputArray[i],HEX);
//Serial.print(",");
}
}
Serial.println("");
}
///////////////////////////////////////////////////////////////////////