-
Notifications
You must be signed in to change notification settings - Fork 1
/
Seg_Display.cpp
46 lines (41 loc) · 1.01 KB
/
Seg_Display.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
#include "Seg_Display.h"
#include "Pins.h"
void Seg_Display::begin() {
blank();
}
void Seg_Display::displayDigit(uint8_t val) {
setRegister(val);
// Serial.println(val);
}
// Setting all registers to 1 makes a blank
void Seg_Display::blank() {
setRegister(10);
// Serial.println("Blank");
}
uint8_t Seg_Display::numberToPort(uint8_t input) {
uint8_t result = 0x00;
if ((input & 0x01) == 0x01) {
// Serial.println("Disp A");
result |= 1 << DISP_A;
}
if ((input & 0x02) == 0x02) {
// Serial.println("Disp B");
result |= 1 << DISP_B;
}
if ((input & 0x04) == 0x04) {
// Serial.println("Disp C");
result |= 1 << DISP_C;
}
if ((input & 0x08) == 0x08) {
// Serial.println("Disp D");
result |= 1 << DISP_D;
}
// Serial.println(result);
return result;
}
void Seg_Display::setRegister(uint8_t input) {
uint8_t or_value = numberToPort(input);
uint8_t and_value = ~(numberToPort(15));
uint8_t result = ((SEG_DISPLAY_REG & and_value) | or_value);
SEG_DISPLAY_REG = result;
}