라즈베리 파이 온습도 센서 OLED
이 튜토리얼은 Raspberry Pi를 사용하여 DHT11/DHT22 센서로부터 온도 및 습도를 읽고 OLED에 표시하는 방법을 안내합니다.
Hardware Preparation
1 | × | Raspberry Pi 4 Model B | Amazon | |
1 | × | SSD1306 I2C OLED Display 128x64 | Amazon | |
1 | × | SSD1306 I2C OLED Display 128x32 | Amazon | |
1 | × | DHT11 Temperature and Humidity 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 |
You can use DHT22 sensor instead of DHT11 sensor.
공개: 이 섹션에서 제공된 링크 중 일부는 제휴 링크입니다. 이 링크를 통해 구매한 경우 추가 비용없이 수수료를 받을 수 있습니다. 지원해 주셔서 감사합니다.
OLED 디스플레이, DHT11 및 DHT22 온도 습도 센서에 대하여
OLED 디스플레이, DHT11 및 DHT22 온습도 센서(핀 구성, 기능, 프로그래밍 등 포함)에 익숙하지 않다면, 다음 튜토리얼이 도움이 될 수 있습니다:
- Raspberry Pi - OLED tutorial
Wiring Diagram
라즈베리 파이 - DHT11 모듈 LCD 배선
이 이미지는 Fritzing을 사용하여 만들어졌습니다. 이미지를 확대하려면 클릭하세요.
라즈베리 파이 - DHT22 모듈 LCD 배선
이 이미지는 Fritzing을 사용하여 만들어졌습니다. 이미지를 확대하려면 클릭하세요.
배선 구성을 간단하고 체계적으로 만들기 위해, Raspberry Pi용 스크루 터미널 블록 실드 사용을 권장합니다. 이 실드는 아래와 같이 더욱 안정적이고 관리하기 쉬운 연결을 제공합니다:
라즈베리 파이 코드 - DHT11 센서 - OLED
Detailed Instructions
- 라즈베리 파이에 Raspbian 또는 기타 라즈베리 파이 호환 운영 체제가 설치되어 있는지 확인하십시오.
- 라즈베리 파이가 PC와 동일한 로컬 네트워크에 연결되어 있는지 확인하십시오.
- 라이브러리를 설치해야 하는 경우 라즈베리 파이가 인터넷에 연결되어 있는지 확인하십시오.
- 라즈베리 파이를 처음 사용하는 경우, 라즈베리 파이 설정 방법을 참조하십시오.
- Linux 및 macOS의 내장 SSH 클라이언트 또는 Windows의 PuTTY를 사용하여 SSH를 통해 PC를 라즈베리 파이에 연결하십시오. PC를 SSH를 통해 라즈베리 파이에 연결하는 방법을 참조하십시오.
- RPi.GPIO 라이브러리가 설치되어 있는지 확인하십시오. 설치되어 있지 않다면, 다음 명령어를 사용하여 설치하십시오:
sudo apt-get update
sudo apt-get install python3-rpi.gpio
- Raspberry Pi에서 OLED 디스플레이를 사용하기 전에 Raspberry Pi에서 I2C 인터페이스를 활성화해야 합니다. Raspberry Pi에서 I2C 인터페이스 활성화 방법을 참조하세요.
- 다음 명령어를 실행하여 OLED 라이브러리를 설치하세요:
pip install Adafruit-SSD1306
- DHT11 온도 및 습도 센서를 위한 라이브러리를 설치하려면 다음 명령어를 실행하세요:
sudo pip3 install Adafruit_DHT
- 파이썬 스크립트 파일 dht11_oled.py을 생성하고 다음 코드를 추가하세요.
# 이 Raspberry Pi 코드는 newbiely.kr 에서 개발되었습니다
# 이 Raspberry Pi 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다.
# 상세한 지침 및 연결도에 대해서는 다음을 방문하세요:
# https://newbiely.kr/tutorials/raspberry-pi/raspberry-pi-temperature-humidity-sensor-oled
import Adafruit_DHT
import Adafruit_SSD1306
from PIL import Image, ImageDraw, ImageFont
import time
# Set up the DHT11 sensor
DHT_SENSOR = Adafruit_DHT.DHT11
DHT_PIN = 20 # GPIO pin where the DHT11 sensor is connected
# Set up the SSD1306 OLED display
RST = None
OLED = Adafruit_SSD1306.SSD1306_128_64(rst=RST)
OLED.begin()
OLED.clear()
OLED.display()
# Set up fonts
font = ImageFont.load_default()
while True:
# Read temperature and humidity from DHT11 sensor
humidity, temperature = Adafruit_DHT.read_retry(DHT_SENSOR, DHT_PIN)
# Clear the OLED display
OLED.clear()
# Display temperature and humidity on OLED
OLED.draw.text((5, 5), f'Temp: {temperature:.1f} C', font=font, fill=255)
OLED.draw.text((5, 20), f'Humidity: {humidity:.1f}%', font=font, fill=255)
# Update the OLED display
OLED.display()
# Wait for a moment before reading again
time.sleep(2)
except KeyboardInterrupt:
# Clean up code before exiting the script
OLED.clear()
OLED.display()
print("\nExiting the script.")
- 파일을 저장하고 터미널에서 다음 명령어를 실행하여 Python 스크립트를 실행하세요:
python3 dht11_oled.py
스크립트는 터미널에서 Ctrl + C를 누를 때까지 무한 루프에서 계속 실행됩니다.
- 온도 센서 주위의 환경을 따뜻하게 하거나 손으로 센서를 잡으세요.
- OLED 디스플레이에서 결과를 확인하세요.
라즈베리 파이 코드 - DHT22 센서 - OLED
# 이 Raspberry Pi 코드는 newbiely.kr 에서 개발되었습니다
# 이 Raspberry Pi 코드는 어떠한 제한 없이 공개 사용을 위해 제공됩니다.
# 상세한 지침 및 연결도에 대해서는 다음을 방문하세요:
# https://newbiely.kr/tutorials/raspberry-pi/raspberry-pi-temperature-humidity-sensor-oled
import Adafruit_DHT
import Adafruit_SSD1306
from PIL import Image, ImageDraw, ImageFont
import time
# Set up the DHT22 sensor
DHT_SENSOR = Adafruit_DHT.DHT22
DHT_PIN = 20 # GPIO pin where the DHT22 sensor is connected
# Set up the SSD1306 OLED display
RST = None
OLED = Adafruit_SSD1306.SSD1306_128_64(rst=RST)
OLED.begin()
OLED.clear()
OLED.display()
# Set up fonts
font = ImageFont.load_default()
while True:
# Read temperature and humidity from DHT22 sensor
humidity, temperature = Adafruit_DHT.read_retry(DHT_SENSOR, DHT_PIN)
# Clear the OLED display
OLED.clear()
# Display temperature and humidity on OLED
OLED.draw.text((5, 5), f'Temp: {temperature:.1f} C', font=font, fill=255)
OLED.draw.text((5, 20), f'Humidity: {humidity:.1f}%', font=font, fill=255)
# Update the OLED display
OLED.display()
# Wait for a moment before reading again
time.sleep(2)
except KeyboardInterrupt:
# Clean up code before exiting the script
OLED.clear()
OLED.display()
print("\nExiting the script.")