라즈베리 파이 온도 센서 LCD

이 튜토리얼은 Raspberry Pi를 사용하여 DS18B20 원와이어 센서에서 온도를 읽고 LCD I2C에 표시하는 방법을 안내합니다.

Hardware Preparation

1×Raspberry Pi 4 Model B Amazon
1×LCD I2C 쿠팡 | Amazon
1×DS18B20 Temperature Sensor (WITH Adapter) 쿠팡 | Amazon
1×DS18B20 Temperature Sensor (WITHOUT Adapter) Amazon
1×4.7 kΩ resistor Amazon
1×Breadboard 쿠팡 | 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
공개: 이 섹션에서 제공된 링크 중 일부는 제휴 링크입니다. 이 링크를 통해 구매한 경우 추가 비용없이 수수료를 받을 수 있습니다. 지원해 주셔서 감사합니다.

Buy Note: Many DS18B20 sensors available in the market are unreliable. We strongly recommend buying the sensor from the DIYables brand using the link provided above. We tested it, and it worked reliably.

온도 센서 및 LCD에 대하여

온도 센서와 LCD(핀 배열, 작동 방식, 프로그래밍 방법 등)에 익숙하지 않다면, 다음 튜토리얼이 도움이 될 것입니다:

Wiring Diagram

  • 터미널 어댑터를 사용하는 배선도(권장).
라즈베리 파이 DS18B20 온도 센서 LCD 배선도

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

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

Raspberry Pi Screw Terminal Block Shield

매끄러운 설치를 위해 DS18B20 센서와 이에 동반되는 배선 어댑터를 구입하는 것을 추천합니다. 이 어댑터는 통합된 저항기를 포함하고 있어 배선에 추가 저항기가 필요하지 않습니다.

라즈베리 파이 코드

※ NOTE THAT:

LCD의 주소는 제조사에 따라 달라질 수 있습니다. 우리 코드는 DIYables 제조사가 지정한 0x27을 사용했습니다.

Detailed Instructions

  • Raspberry Pi에 Raspbian 또는 기타 Raspberry Pi 호환 운영 체제가 설치되어 있는지 확인하세요.
  • Raspberry Pi가 PC와 동일한 로컬 네트워크에 연결되어 있는지 확인하세요.
  • 일부 라이브러리를 설치해야 할 경우 Raspberry Pi가 인터넷에 연결되어 있는지 확인하세요.
  • Raspberry Pi를 처음 사용하는 경우 Raspberry Pi 설정 방법을 참조하세요.
  • Linux 및 macOS에서는 내장된 SSH 클라이언트를 사용하고, Windows에서는 PuTTY를 사용하여 PC를 Raspberry Pi에 SSH로 연결하세요. PC를 Raspberry Pi에 SSH로 연결하는 방법을 참조하세요.
  • RPi.GPIO 라이브러리가 설치되어 있는지 확인하세요. 설치되어 있지 않다면 다음 명령어를 사용하여 설치하세요:
sudo apt-get update sudo apt-get install python3-rpi.gpio
  • Raspberry Pi에서 DS18B20 온도 센서를 사용하기 전에 Raspberry Pi에서 1-Wire 인터페이스를 활성화해야 합니다. How to enable 1-Wire interface on Raspberry Pi를 참조하십시오.
  • 다음 명령어를 실행하여 DS18B20 온도 센서 라이브러리를 설치하십시오:
pip install w1thermsensor
pip install lcddriver
  • Python 스크립트 파일 temperature_lcd.py를 만들고 다음 코드를 추가하세요:
# 이 Raspberry Pi 코드는 newbiely.kr 에서 개발되었습니다 # 이 Raspberry Pi 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다. # 상세한 지침 및 연결도에 대해서는 다음을 방문하세요: # https://newbiely.kr/tutorials/raspberry-pi/raspberry-pi-temperature-sensor-lcd import lcddriver import time from w1thermsensor import W1ThermSensor # Initialize the LCD lcd = lcddriver.lcd() # Find the connected DS18B20 sensor def find_ds18b20_sensor(): for sensor in W1ThermSensor.get_available_sensors(): if sensor.type == W1ThermSensor.THERM_SENSOR_DS18B20: return sensor return None # Read temperature from the sensor def read_temperature(sensor): temperature_celsius = sensor.get_temperature() return temperature_celsius # Find DS18B20 sensor ds18b20_sensor = find_ds18b20_sensor() if ds18b20_sensor is not None: print(f"DS18B20 Sensor found: {ds18b20_sensor.id}") try: while True: # Read temperature temperature_c = read_temperature(ds18b20_sensor) # Display temperature on LCD lcd.lcd_display_string(f"Temp: {temperature_c:.2f} C", 1) # Wait for a moment before reading again time.sleep(2) lcd.lcd_clear() except KeyboardInterrupt: pass else: print("DS18B20 Sensor not found.")
  • 파일을 저장하고 터미널에서 다음 명령어를 실행하여 Python 스크립트를 실행하세요:
python3 temperature_lcd.py

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

  • 센서를 뜨거운 물과 차가운 물에 넣거나 손에 쥐고 있어보세요.
  • 결과를 확인하려면 LCD를 체크하세요.

LCD에 아무것도 표시되지 않으면, 도움을 받기 위해 LCD I2C 문제 해결을 참조하세요.

코드 설명

소스 코드 주석에 포함된 한 줄씩 설명을 확인하세요!

Video Tutorial

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