Chapter 27 Solder Circuit Board
284
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
lastMove
=
time
.
time
()
#the start time
w h ile
T r ue
:
i f
(
time
.
time
()
-
lastMove
>
moveSpeed
):
#speed control
lastMove
=
time
.
time
()
#Record the time point of the move
index
+ =
1
#move to next
i f
(
index
>
15
) :
#index to 0
index
=
0
f o r
i
i n
range
(
0
,
64
):
#The cycle of PWM is 64 cycles
data
=
0
#This loop of output data
f o r
j
i n
range
(
0
,
8
):
#Calculate the output state of this loop
i f
(
i
<
pluseWidth
[
j
+
index
]):
#Calculate the LED state according to the
pulse width
data
| =
1
< <
j
#Calculate the data
outData
(
data
)
#Send the data to 74HC595
d e f
destroy
():
# When 'Ctrl+C' is pressed, the function is executed.
GPIO
.
cleanup
()
i f
__name__
= =
'__main__'
:
# Program starting from here
p r int
(
'Program is starting...'
)
setup
()
t r y
:
loop
( )
e x cept
KeyboardInterrupt
:
destroy
()
We can see that this procedure is different from the previous running water lamp, we define an array for the
modulation of different PWM LED pulse width, so that different LED have different brightness. Starting from
the array index 0, each take an array of 8 adjacent numbers, as the LED duty cycle output, which in turn
increases the index number, it will produce a flow effect.
pluseWidth
=
[
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
64
,
32
,
16
,
8
,
4
,
2
,
1
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
]
By recording the moving time point to control the speed of the movement of index number, namely, control
the flowing speed of flowing water light. Variable moveSpeed saves the time interval of each move, and the
greater the value, the slower the flowing rate. On the contrary, the faster the flowing.
i f
(
time
.
time
()
-
lastMove
>
moveSpeed
):
#speed control
lastMove
=
time
.
time
()
#Record the time point of the move
index
+ =
1
#move to next
i f
(
index
>
15
) :
#index to 0
index
=
0
Содержание 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 ...