Chapter 18 74HC595 & 7-segment display.
192
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
int
main
(
void
)
{
int
i
;
i f
(
wiringPiSetup
()
= =
-
1
) {
//when initialize wiring failed,print messageto screen
printf
(
"setup wiringPi failed !"
) ;
r e turn
1
;
}
pinMode
(
dataPin
,
OUTPUT
);
pinMode
(
latchPin
,
OUTPUT
);
pinMode
(
clockPin
,
OUTPUT
);
w h ile
(
1
){
f o r
(
i
=
0
;
i
<
sizeof
(
num
);
i
++){
digitalWrite
(
latchPin
,
LOW
);
_shiftOut
(
dataPin
,
clockPin
,
MSBFIRST
,
num
[
i
]);
//Output the figures and the
highest level is transfered preferentially.
digitalWrite
(
latchPin
,
HIGH
);
delay
(
500
);
}
f o r
(
i
=
0
;
i
<
sizeof
(
num
);
i
++){
digitalWrite
(
latchPin
,
LOW
);
_shiftOut
(
dataPin
,
clockPin
,
MSBFIRST
,
num
[
i
]
&
0x7f
) ;
//Use the "&0x7f" to
display the decimal point.
digitalWrite
(
latchPin
,
HIGH
);
delay
(
500
);
}
}
r e turn
0
;
}
First, put encoding of “0”-“F” into the array.
unsigned
char
num
[]={
0xc0
,
0xf9
,
0xa4
,
0xb0
,
0x99
,
0x92
,
0x82
,
0xf8
,
0x80
,
0x90
,
0x88
,
0x83
,
0xc6
,
0xa1
,
0x86
,
0x8e
};
In the “for” cycle of loop() function, use 74HC595 to output contents of array “num” successively.
SevenSegmentDisplay can correctly display the corresponding characters. Pay attention to that in shiftOut
function, the transmission bit, flag bit highest bit will be transmitted preferentially.
for
(
i
=
0
;
i
<
sizeof
(
num
);
i
++){
digitalWrite
(
latchPin
,
LOW
);
_shiftOut
(
dataPin
,
clockPin
,
MSBFIRST
,
num
[
i
]);//Output the figures and the
highest level is transfered preferentially.
digitalWrite
(
latchPin
,
HIGH
);
delay
(
500
);
}
Содержание Ultimate Starter Kit
Страница 1: ...Free your innovation Freenove is an open source electronics platform www freenove com ...
Страница 116: ...Chapter 9 Potentiometer RGBLED 116 www freenove com support freenove com Circuit Schematic diagram ...
Страница 117: ...117 Chapter 9 Potentiometer RGBLED www freenove com support freenove com Hardware connection ...
Страница 136: ...Chapter 12 Joystick 136 www freenove com support freenove com Circuit Schematic diagram Hardware connection ...
Страница 155: ...155 Chapter 14 Relay Motor www freenove com support freenove com Hardware connection OFF 3 3V ...
Страница 173: ...173 Chapter 16 Stepping Motor www freenove com support freenove com Hardware connection ...
Страница 182: ...Chapter 17 74HC595 LEDBar Graph 182 www freenove com support freenove com Circuit Schematic diagram Hardware connection ...
Страница 197: ...197 Chapter 18 74HC595 7 segment display www freenove com support freenove com Circuit Schematic diagram ...
Страница 198: ...Chapter 18 74HC595 7 segment display 198 www freenove com support freenove com Hardware connection ...
Страница 239: ...239 Chapter 22 Matrix Keypad www freenove com support freenove com Circuit Schematic diagram ...
Страница 240: ...Chapter 22 Matrix Keypad 240 www freenove com support freenove com Hardware connection ...
Страница 270: ...Chapter 26 WebIOPi IOT 270 www freenove com support freenove com Circuit Schematic diagram Hardware connection ...