티스토리 뷰

GPIO 사용을 위해서는 라이브러리 설치가 필요하다

 

pi@raspberrypi:~ $ sudo apt-get install python-dev

pi@raspberrypi:~ $ sudo apt-get install python-rpi.gpio

 

설치가 완료되었으나 Python으로 실행시키면 RPi.GPIO를 못찾는다는 에러가 뜬다.

Python3으로 실행시키면 실행이된다.

일단 다른 해결방법을 찾을때까지 Python3 명령어로 진행

 

from flask import Flask
import RPi.GPIO as GPIO
 
BUTTON_PIN = 16
 
GPIO.setmode(GPIO.BCM)
GPIO.setup(BUTTON_PIN, GPIO.IN, pull_up_down = GPIO.PUD_UP)
app = Flask(__name__)
 
@app.route("/")
def index():
return "Hello from Flask"
 
@app.route("/push-button")
def check_push_button_state():
if GPIO.input(BUTTON_PIN) == GPIO.LOW:
return "Button is pressed"
else:
return "Button is not pressed"
 
app.run(host="0.0.0.0")

 

http://0.0.0.0:5000/ 로 접속하면 "Hello from Flask"

http://0.0.0.0:5000/push-button 로 접속하면 "Button is not pressed" 가 뜬다

 

 

'오픈 하드웨어 > 라즈베리파이' 카테고리의 다른 글

LED 제어  (0) 2023.05.31
Raspberry Pi GPIO Default 상태  (0) 2023.05.31
Flask Web Server 생성 및 접속  (0) 2023.05.29
raspberry pi ssh 접속 및 vnc 설치  (0) 2023.05.29
diskpart 포맷 명령어 요약  (0) 2023.05.24