[RaspberryPI] 스위치 제어
스위치 종류
1. Tact 스위치
2. 로커 스위치
3. Push 스위치
Tact 스위치
눌렀을 때 딸깍거리는 스위치 - 주로 4개의 단자로 이루어져 있고, 일반적으로는 하나의 회로만 사용함
버튼 다루기
회로
polling 방식
from gpiozero import Button
from time import sleep
button = Button(2) # GPIO 2번핀
while True:
if button.is_pressed:
print("Button is pressed") # 버튼 눌렸을 때 출력
sleep(1)
else :
print("Button is not pressed") # 버튼 눌리지 않았을 때 출력
sleep(1)
interrupt 방식
from gpiozero import Button
from signal import pause
def say_hello():
print("Hello!")
def say_goodbye():
print("Goodbye!")
button = Button(2)
button.when_pressed = say_hello # 버튼 눌렸을 떄 Hello 출력
button.when_released = say_goodbye # 버튼 땠을 때 Goodbye 출력
pause()
Interrupt 방식으로 스위치로 LED 제어
from gpiozero import Button, LED
from signal import pause
flag = 0
led1 = LED(3) # LED는 3번핀
def go():
global flag
if flag == 0 :
flag = 1
led1.on()
else :
flag = 0
led1.off()
button = Button(2) # 스위치는 2번핀
button.when_pressed = go # 버튼 눌리면 go 함수 실행
pause()
Author And Source
이 문제에 관하여([RaspberryPI] 스위치 제어), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dev-hoon/24z2icu5저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)