-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathTM1637.cpp
329 lines (283 loc) · 9.96 KB
/
TM1637.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
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
/*
TM1637.cpp
A library for the 4 digit display
TM1637 chip datasheet:
https://www.mcielectronics.cl/website_MCI/static/documents/Datasheet_TM1637.pdf
Copyright (c) 2012 seeed technology inc.
Website : www.seeed.cc
Author : Frankie.Chu
Create Time: 9 April,2012
Change Log : 14 April,2020 - KORG style alphabets
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include "TM1637.h"
#include <Arduino.h>
// --0x01--
// | |
//0x20 0x02
// | |
// --0x40- -
// | |
//0x10 0x04
// | |
// --0x08--
namespace {
uint8_t char2segments(char c) {
switch (c) {
case '_' : return 0x08;
case '^' : return 0x01; // ¯
case '-' : return 0x40;
case '*' : return 0x63; // °
case ' ' : return 0x00; // space
case 'A' : return 0x77; // upper case A
case 'a' : return 0x5f; // lower case a
case 'B' : // lower case b
case 'b' : return 0x7c; // lower case b
case 'C' : return 0x39; // upper case C
case 'c' : return 0x58; // lower case c
case 'D' : // lower case d
case 'd' : return 0x5e; // lower case d
case 'E' : // upper case E
case 'e' : return 0x79; // upper case E
case 'F' : // upper case F
case 'f' : return 0x71; // upper case F
case 'G' : // upper case G
case 'g' : return 0x35; // upper case G
case 'H' : return 0x76; // upper case H
case 'h' : return 0x74; // lower case h
case 'I' : return 0x06; // 1
case 'i' : return 0x04; // lower case i
case 'J' : return 0x1e; // upper case J
case 'j' : return 0x16; // lower case j
case 'K' : // upper case K
case 'k' : return 0x75; // upper case K
case 'L' : // upper case L
case 'l' : return 0x38; // upper case L
case 'M' : // twice tall n
case 'm' : return 0x37; // twice tall ∩
case 'N' : // lower case n
case 'n' : return 0x54; // lower case n
case 'O' : // lower case o
case 'o' : return 0x5c; // lower case o
case 'P' : // upper case P
case 'p' : return 0x73; // upper case P
case 'Q' : return 0x7b; // upper case Q
case 'q' : return 0x67; // lower case q
case 'R' : // lower case r
case 'r' : return 0x50; // lower case r
case 'S' : // 5
case 's' : return 0x6d; // 5
case 'T' : // lower case t
case 't' : return 0x78; // lower case t
case 'U' : // lower case u
case 'u' : return 0x1c; // lower case u
case 'V' : // twice tall u
case 'v' : return 0x3e; // twice tall u
case 'W' : return 0x7e; // upside down A
case 'w' : return 0x2a; // separated w
case 'X' : // upper case H
case 'x' : return 0x76; // upper case H
case 'Y' : // lower case y
case 'y' : return 0x6e; // lower case y
case 'Z' : // separated Z
case 'z' : return 0x1b; // separated Z
}
return 0;
}
}
static int8_t tube_tab[] = {0x3f, 0x06, 0x5b, 0x4f,
0x66, 0x6d, 0x7d, 0x07,
0x7f, 0x6f, 0x77, 0x7c,
0x39, 0x5e, 0x79, 0x71
}; //0~9,A,b,C,d,E,F
TM1637::TM1637(uint8_t clk, uint8_t data) {
clkpin = clk;
datapin = data;
pinMode(clkpin, OUTPUT);
pinMode(datapin, OUTPUT);
}
void TM1637::init(void) {
clearDisplay();
}
int TM1637::writeByte(int8_t wr_data) {
for (uint8_t i = 0; i < 8; i++) { // Sent 8bit data
digitalWrite(clkpin, LOW);
if (wr_data & 0x01) {
digitalWrite(datapin, HIGH); // LSB first
} else {
digitalWrite(datapin, LOW);
}
wr_data >>= 1;
digitalWrite(clkpin, HIGH);
}
digitalWrite(clkpin, LOW); // Wait for the ACK
digitalWrite(datapin, HIGH);
digitalWrite(clkpin, HIGH);
pinMode(datapin, INPUT);
bitDelay();
uint8_t ack = digitalRead(datapin);
if (ack == 0) {
pinMode(datapin, OUTPUT);
digitalWrite(datapin, LOW);
}
bitDelay();
pinMode(datapin, OUTPUT);
bitDelay();
return ack;
}
// Send start signal to TM1637 (start = when both pins goes low)
void TM1637::start(void) {
digitalWrite(clkpin, HIGH);
digitalWrite(datapin, HIGH);
digitalWrite(datapin, LOW);
digitalWrite(clkpin, LOW);
}
// End of transmission (stop = when both pins goes high)
void TM1637::stop(void) {
digitalWrite(clkpin, LOW);
digitalWrite(datapin, LOW);
digitalWrite(clkpin, HIGH);
digitalWrite(datapin, HIGH);
}
// Display function.Write to full-screen.
void TM1637::display(int8_t disp_data[]) {
int8_t seg_data[DIGITS];
uint8_t i;
for (i = 0; i < DIGITS; i++) {
seg_data[i] = disp_data[i];
}
coding(seg_data);
start(); // Start signal sent to TM1637 from MCU
writeByte(ADDR_AUTO); // Command1: Set data
stop();
start();
writeByte(cmd_set_addr); // Command2: Set address (automatic address adding)
for (i = 0; i < DIGITS; i++) {
writeByte(seg_data[i]); // Transfer display data (8 bits x num_of_digits)
}
stop();
start();
writeByte(cmd_disp_ctrl); // Control display
stop();
}
//******************************************
void TM1637::display(uint8_t bit_addr, int8_t disp_data) {
int8_t seg_data;
seg_data = coding(disp_data);
start(); // Start signal sent to TM1637 from MCU
writeByte(ADDR_FIXED); // Command1: Set data
stop();
start();
writeByte(bit_addr | 0xc0); // Command2: Set data (fixed address)
writeByte(seg_data); // Transfer display data 8 bits
stop();
start();
writeByte(cmd_disp_ctrl); // Control display
stop();
}
//--------------------------------------------------------
void TM1637::displayNum(float num, int decimal, bool show_minus) {
// Displays number with decimal places (no decimal point implementation)
// Colon is used instead of decimal point if decimal == 2
// Be aware of int size limitations (up to +-2^15 = +-32767)
int number = round(fabs(num) * pow(10, decimal));
if (decimal == 2) {
point(true);
} else {
point(false);
}
for (int i = 0; i < DIGITS - (show_minus && num < 0 ? 1 : 0); ++i) {
int j = DIGITS - i - 1;
if (number != 0) {
display(j, number % 10);
} else {
display(j, 0x7f); // display nothing
}
number /= 10;
}
if (show_minus && num < 0) {
display(0, '-'); // Display '-'
}
}
void TM1637::displayStr(char str[], uint16_t loop_delay) {
int end = strlen(str);
if(end <= DIGITS){
for (int i = 0; i < DIGITS; i++) {
if(i<0 || i>=end){ // display nothing on the remaining display
display(i,0x7f);
}
else{
display(i, str[i]);
}
}
}
else{
int offset=-DIGITS;
for (int i = 0; i <= end+DIGITS; i++) {
for (int j = offset, k=0; j < DIGITS+offset; j++,k++) {
if(j<0 || j>=end){
display(k,0x7f);
}
else{
display(k, str[j]);
}
}
offset++;
delay(loop_delay); //loop delay
}
}
}
void TM1637::clearDisplay(void) {
display(0x00, 0x7f);
display(0x01, 0x7f);
display(0x02, 0x7f);
display(0x03, 0x7f);
}
// To take effect the next time it displays.
void TM1637::set(uint8_t brightness, uint8_t set_data, uint8_t set_addr) {
cmd_set_data = set_data;
cmd_set_addr = set_addr;
//Set the brightness and it takes effect the next time it displays.
cmd_disp_ctrl = 0x88 + brightness;
}
// Whether to light the clock point ":".
// To take effect the next time it displays.
void TM1637::point(boolean PointFlag) {
_PointFlag = PointFlag;
}
void TM1637::coding(int8_t disp_data[]) {
for (uint8_t i = 0; i < DIGITS; i++) {
disp_data[i] = coding(disp_data[i]);
}
}
int8_t TM1637::coding(int8_t disp_data) {
if (disp_data == 0x7f) {
disp_data = 0x00; // Clear digit
} else if (disp_data >= 0 && disp_data < int(sizeof(tube_tab) / sizeof(*tube_tab))) {
disp_data = tube_tab[disp_data];
} else if (disp_data >= '0' && disp_data <= '9') {
disp_data = tube_tab[int(disp_data) - 48]; // char to int (char "0" = ASCII 48)
} else {
disp_data = char2segments(disp_data);
}
disp_data += _PointFlag == POINT_ON ? 0x80 : 0;
return disp_data;
}
void TM1637::bitDelay(void) {
delayMicroseconds(50);
}