라즈베리 파이 장애물 센서

이 튜토리얼은 적외선 장애물 회피 센서를 사용하여 Raspberry Pi를 사용하는 방법을 안내합니다. 자세히 알아볼 내용은 다음과 같습니다.

Hardware Preparation

1×Raspberry Pi 4 Model B Amazon
1×IR Obstacle Avoidance Sensor Amazon
1×Jumper Wires Amazon
1×(추천) Screw Terminal Block Shield for Raspberry Pi 쿠팡 | Amazon
1×(추천) USB-C Power Cable with On/Off Switch for Raspberry Pi 4B Amazon
1×(추천) Plastic Case and Cooling Fan for Raspberry Pi 4B Amazon
1×(추천) HDMI Touch Screen Monitor for Raspberry Pi Amazon
공개: 이 섹션에서 제공된 링크 중 일부는 제휴 링크입니다. 이 링크를 통해 구매한 경우 추가 비용없이 수수료를 받을 수 있습니다. 지원해 주셔서 감사합니다.

IR 장애물 회피 센서에 대하여

적외선 장애물 센서는 적외선 신호를 사용하여 앞에 있는 물체의 존재를 감지할 수 있습니다. 감지 범위는 2cm에서 30cm까지이며, 내장된 가변 저항기로 조정할 수 있습니다.

적외선 장애물 회피 센서 핀 배열

IR 장애물 회피 센서는 세 개의 핀이 있습니다:

  • GND 핀: GND (0V)에 연결해야 합니다.
  • VCC 핀: VCC (5V 또는 3.3V)에 연결해야 합니다.
  • OUT 핀: 출력 핀으로, 장애물이 있을 때는 LOW, 장애물이 없을 때는 HIGH 상태를 나타냅니다. 이 핀은 Raspberry Pi 입력 핀에 연결해야 합니다.
IR 장애물 회피 센서 핀 배치

작동 방식

적외선 장애물 감지 센서 모듈에는 내장 IR 송신기와 IR 수신기가 있습니다. IR 송신기는 IR 신호를 보냅니다. IR 수신기는 반사된 IR 신호를 찾아 장애물이 있는지 여부를 감지합니다. 센서의 OUT 핀은 장애물의 존재를 반영합니다:

  • 센서 앞에 장애물이 있는 경우, 센서의 OUT 핀은 LOW가 됩니다.
  • 센서 앞에 장애물이 없는 경우, 센서의 OUT 핀은 HIGH가 됩니다.

※ NOTE THAT:

운송 중에 센서가 변형될 수 있으며, 이는 오작동을 유발할 수 있습니다. 센서가 제대로 작동하지 않으면 IR 송신기와 수신기를 조정하여 서로 평행하도록 하세요.

Wiring Diagram

라즈베리 파이 IR 장애물 회피 센서 배선도

이 이미지는 Fritzing을 사용하여 만들어졌습니다. 이미지를 확대하려면 클릭하세요.

배선 구성을 간단하고 체계적으로 만들기 위해, Raspberry Pi용 스크루 터미널 블록 실드 사용을 권장합니다. 이 실드는 아래와 같이 더욱 안정적이고 관리하기 쉬운 연결을 제공합니다:

Raspberry Pi Screw Terminal Block Shield

IR 장애물 회피 센서를 위한 프로그래밍 방법

  • GPIO.setup() 함수를 사용하여 Raspberry Pi 핀을 디지털 입력 모드로 초기화합니다.
GPIO.setup(SENSOR_PIN, GPIO.IN) # GPIO 핀을 입력 모드로 설정
  • GPIO.input() 함수를 사용하여 Raspberry Pi 핀의 상태를 확인하십시오.
obstacle_state = GPIO.input(SENSOR_PIN) # 장애물 상태를 읽어옵니다.

라즈베리 파이 코드

장애물 회피 애플리케이션을 프로그래밍할 때 두 가지 접근 방식을 사용할 수 있습니다:

  • 장애물이 있는지 여부에 따라 조치 취하기
  • 장애물이 감지되었거나 제거되었는지에 따라 조치 취하기

장애물 감지 여부를 확인하는 라즈베리 파이 코드

Detailed Instructions

  • Raspberry Pi에 Raspbian 또는 기타 Raspberry Pi 호환 운영 체제가 설치되어 있는지 확인하세요.
  • Raspberry Pi가 PC와 동일한 로컬 네트워크에 연결되어 있는지 확인하세요.
  • 일부 라이브러리를 설치해야 하는 경우 Raspberry Pi가 인터넷에 연결되어 있는지 확인하세요.
  • Raspberry Pi를 처음 사용하는 경우, Raspberry Pi 설정 방법을 참조하세요.
  • Linux와 macOS의 내장 SSH 클라이언트 또는 Windows의 PuTTY를 사용하여 SSH를 통해 PC를 Raspberry Pi에 연결하세요. SSH를 통해 PC를 Raspberry Pi에 연결하는 방법을 참조하세요.
  • RPi.GPIO 라이브러리가 설치되어 있는지 확인하세요. 설치되어 있지 않다면, 다음 명령어를 사용하여 설치하세요:
sudo apt-get update sudo apt-get install python3-rpi.gpio
  • Python 스크립트 파일 obstacle_sensor.py를 생성하고 다음 코드를 추가하세요.
# 이 Raspberry Pi 코드는 newbiely.kr 에서 개발되었습니다 # 이 Raspberry Pi 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다. # 상세한 지침 및 연결도에 대해서는 다음을 방문하세요: # https://newbiely.kr/tutorials/raspberry-pi/raspberry-pi-obstacle-sensor import RPi.GPIO as GPIO # Set the GPIO mode to BCM (Broadcom SOC channel numbering) GPIO.setmode(GPIO.BCM) # Set the pin number connected to the ir obstacle avoidance sensor SENSOR_PIN = 12 # Set the GPIO pin as an input GPIO.setup(SENSOR_PIN, GPIO.IN) try: while True: # Read the state from the ir obstacle avoidance sensor obstacle_state = GPIO.input(SENSOR_PIN) # The ir obstacle avoidance sensor outputs LOW (0) when obstacle is present, otherwise HIGH (1) if obstacle_state == GPIO.LOW: print("The obstacle is present") else: print("The obstacle is NOT present") except KeyboardInterrupt: # Clean up the GPIO settings on program exit GPIO.cleanup()
  • 파일을 저장하고 터미널에서 다음 명령을 실행하여 Python 스크립트를 실행하십시오.
python3 obstacle_sensor.py
  • 센서 앞에 장애물을 일정 시간 동안 두었다가 제거합니다.
  • 터미널에서 결과를 확인합니다.
PuTTY - Raspberry Pi
The obstacle is NOT present The obstacle is NOT present The obstacle is NOT present The obstacle is NOT present The obstacle is NOT present The obstacle is present The obstacle is present The obstacle is present The obstacle is present The obstacle is NOT present The obstacle is NOT present

스크립트는 터미널에서 Ctrl + C를 누를 때까지 무한 루프에서 계속 실행됩니다.

장애물 감지를 위한 라즈베리 파이 코드

Detailed Instructions

  • Python 스크립트 파일 obstacle_sensor_events.py을(를) 생성하고 다음 코드를 추가하세요.
# 이 Raspberry Pi 코드는 newbiely.kr 에서 개발되었습니다 # 이 Raspberry Pi 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다. # 상세한 지침 및 연결도에 대해서는 다음을 방문하세요: # https://newbiely.kr/tutorials/raspberry-pi/raspberry-pi-obstacle-sensor import RPi.GPIO as GPIO import time # Set the GPIO mode to BCM (Broadcom SOC channel numbering) GPIO.setmode(GPIO.BCM) # Set the pin number connected to the ir obstacle avoidance sensor SENSOR_PIN = 12 # Set the GPIO pin as an input GPIO.setup(SENSOR_PIN, GPIO.IN) # Variable to track the ir obstacle avoidance sensor state prev_obstacle_state = GPIO.HIGH # Assuming no obstacle initially try: while True: obstacle_state = GPIO.input(SENSOR_PIN) if obstacle_state != prev_obstacle_state: if obstacle_state == GPIO.LOW: # obstacle is detected print("An obstacle is detected") else: # An obstacle is removed print("An obstacle is removed") prev_obstacle_state = obstacle_state time.sleep(0.1) # A small delay to debounce the input except KeyboardInterrupt: # Clean up the GPIO settings on program exit GPIO.cleanup()
  • 파일을 저장하고 터미널에서 다음 명령어를 실행하여 파이썬 스크립트를 실행하세요:
python3 obstacle_sensor_events.py
  • 잠시 동안 센서 앞에 장애물을 두었다가 제거하세요.
  • 터미널에서 결과를 확인하세요.
PuTTY - Raspberry Pi
An obstacle is detected An obstacle is removed

Video Tutorial

비디오 제작은 시간이 많이 걸리는 작업입니다. 비디오 튜토리얼이 학습에 도움이 되었다면, YouTube 채널 을 구독하여 알려 주시기 바랍니다. 비디오에 대한 높은 수요가 있다면, 비디오를 만들기 위해 노력하겠습니다.

관련 튜토리얼