-
Notifications
You must be signed in to change notification settings - Fork 5
/
fa-smeter.ino
312 lines (264 loc) · 8.65 KB
/
fa-smeter.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/******************************************************************************
*
* This file is part of the Arduino-Arcs project, see
* https://github.com/pavelmc/arduino-arcs
*
* Copyright (C) 2016...2017 Pavel Milanes (CO7WT) <pavelmc@gmail.com>
*
* This program is free software under the GNU GPL v3.0
*
* ***************************************************************************/
// do you have SMETER?
#ifdef SMETER
// declaration for the special chars in the SMETER bar
/**************************************
* As per the LCD datasheet:
*
* Each char is a matrix of 8x8
* but internally they are:
* > 5 bits per line (lower 5 bits)
* > 7 lines
* > the underscore line
*
**************************************/
#ifdef SMETER_ALT
// Alternative SMeter, low resolution and more code size
byte bar[8] = {
B11111,
B11111,
B11111,
B10001,
B11111,
B11111,
B11111
};
byte s1[8] = {
B11111,
B10011,
B11011,
B11011,
B11011,
B10001,
B11111
};
byte s3[8] = {
B11111,
B10001,
B11101,
B10001,
B11101,
B10001,
B11111
};
byte s5[8] = {
B11111,
B10001,
B10111,
B10001,
B11101,
B10001,
B11111
};
byte s7[8] = {
B11111,
B10001,
B11101,
B11011,
B11011,
B11011,
B11111
};
byte s9[8] = {
B11111,
B10001,
B10101,
B10001,
B11101,
B11101,
B11111
};
#else
// Default SMEter, high resolution small code size
byte half[8] = {
B11000,
B11000,
B11000,
B11000,
B11000,
B11000,
B11000,
B00000
};
byte full[8] = {
B11011,
B11011,
B11011,
B11011,
B11011,
B11011,
B11011,
B00000
};
#endif
// bar show function two alternatives upon smeter type
#ifdef SMETER_ALT
// Alternative "1-3-5-7-9-+20"
void showBarGraph() {
// we are working on a 2x16 and we have 13 bars to show (0-12)
unsigned long ave = 0, i;
volatile static byte barMax = 0;
// find the average
for (i=0; i<BARGRAPH_SAMPLES; i++) ave += pep[i];
ave /= BARGRAPH_SAMPLES;
// set the smeter reading on the global scope for CAT readings
sMeter = ave;
// scale it down to 0-12 from word
byte local = map(ave, 0, 1023, 0, 12);
// printing only the needed part of the bar, if growing or shrinking
// if the same no action is required, remember we have to minimize the
// writes to the LCD to minimize QRM
// if we get a barReDraw = true; then reset to redrawn the entire bar
if (barReDraw) {
barMax = 0;
// forcing the write of one line
if (local == 0) local = 1;
}
// growing bar: print the difference
if (local > barMax) {
// LCD position & print the bars
lcd.setCursor(3 + barMax, 1);
// write it
for (i = barMax; i <= local; i++) {
switch (i) {
case 0:
lcd.write(byte(1));
break;
case 2:
lcd.write(byte(2));
break;
case 4:
lcd.write(byte(3));
break;
case 6:
lcd.write(byte(4));
break;
case 8:
lcd.write(byte(5));
break;
default:
lcd.write(byte(0));
break;
}
}
// second part of the erase, preparing for the blanking
if (barReDraw) barMax = 12;
}
// shrinking bar: erase the old ones print spaces to erase just the diff
if (barMax > local) {
lcd.setCursor(3 + barMax, 1);
spaces(barMax - local);
}
// put the var for the next iteration
barMax = local;
//reset the redraw flag
barReDraw = false;
}
#else
// default smeter "|||||||||||||||||||"
void showBarGraph() {
// we are working on a 2x16 and we have 13 bars to show (0-13)
// as we are on a double line we have 0-24 in value
unsigned long ave = 0, i;
volatile static byte barMax = 26;
byte fb, hb;
// pack for average
for (i=0; i<BARGRAPH_SAMPLES; i++) ave += pep[i];
// reduce to mean
ave /= BARGRAPH_SAMPLES;
// set the smeter reading on the global scope for CAT readings
sMeter = ave;
// scale it down to 0-24 from word
byte actual = map(ave, 0, 1023, 0, 26);
// printing only the needed part of the bar, if growing or shrinking
// if the same no action is required, remember we have to minimize the
// writes to the LCD to minimize QRM
// check for the bar redraw
if (barReDraw) {
barMax = 0;
// always show at least a half bar
if (actual == 0) actual = 1;
}
// growing bar: print the difference
if (actual > barMax) {
// reset barMax to a even number to avoid half bars loose
if (barMax % 2) barMax += -1;
// how many bars
fb = (actual - barMax) / 2;
hb = (actual - barMax) % 2;
// LCD position
lcd.setCursor(3 + (barMax/2), 1);
// full bars
if (fb > 0)
for (word i = 0; i < fb; i++)
lcd.write(byte(0)); // full bar
// half bars
// must be always just one half bar
if (hb > 0)
lcd.write(byte(1)); // half bar
}
// shrinking bar: erase the old ones
// just print spaces to erase just the diff
if (barMax > actual) {
// base position, lower value
fb = actual / 2; // base position
hb = actual % 2;
// fail safe we always want a single bar even if zero
if (actual = 0) hb = 1;
// LCD position
lcd.setCursor(3 + fb, 1);
// half bars
if (hb > 0) {
// must be always just one half bar
lcd.write(byte(1)); // half bar
}
// erase the next resting bars
spaces(((barMax + 1) - actual) / 2);
}
// put the var for the next iteration
barMax = actual;
// reset the bar redraw flag
barReDraw = false;
}
#endif
// take a sample an inject it on the array
void takeSample() {
// reference is 5v
word val;
byte adcPin = 1;
// check if TX
if (tx) adcPin = 0;
// take sample
val = analogRead(adcPin);
// push it in the array
for (byte i = 0; i < BARGRAPH_SAMPLES - 1; i++) pep[i] = pep[i + 1];
pep[BARGRAPH_SAMPLES - 1] = val;
}
// smeter reading, this take a sample of the smeter/txpower each time; an will
// rise a flag when they have rotated the array of measurements 2/3 times to
// have a moving average
void smeter() {
// static smeter array counter
volatile static byte smeterCount = 0;
// no matter what, I must keep taking samples
takeSample();
// it has rotated already?
if (smeterCount > (BARGRAPH_SAMPLES * 2 / 3)) {
// rise the flag about the need to show the bar graph and reset the count
smeterOk = true;
smeterCount = 0;
} else {
// just increment it
smeterCount += 1;
}
}
#endif