Chapter 2 Button & LED
70
37
38
39
40
loop
( )
e x cept
KeyboardInterrupt
:
# When 'Ctrl+C' is pressed, the subprogram destroy() will
be executed.
destroy
()
RPi.GPIO provides us with a simple and effective function to eliminate the jitter, that is
GPIO.add_event_detect(). It uses callback function. Once it detect that the buttonPin has a specified action
FALLING, execute the specified function buttonEvent(). In the function buttonEvent, each time the ledState is
reversed, the state of the LED will be updated.
d e f
buttonEvent
(
channel
):
g l obal
ledState
p r int
'buttonEvent GPIO%d'
%
channel
ledState
=
n o t
ledState
i f
ledState
:
p r int
(
'Turn on LED ... '
)
e l se
:
p r int
(
'Turn off LED ... '
)
GPIO
.
output
(
ledPin
,
ledState
)
d e f
loop
( ):
#Button detect
GPIO
.
add_event_detect
(
buttonPin
,
GPIO
.
FALLING
,
callback
=
buttonEvent
,
bouncetime
=
300
)
w h ile
T r ue
:
p a ss
Of course, you can also use the same programming idea of C code above to achieve this target.
GPIO.add_event_detect(channel, GPIO.RISING, callback=my_callback, bouncetime=200)
This is an event detection function. The first parameter specifies the IO port to be detected. The second
parameter specifies the action to be detected. The third parameter specified a function name, the function
will be executed when the specified action is detected. And the fourth parameter is used to set the jitter
time.
Содержание 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 ...