1
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

②Raspberry Pi3で湿度と温度を取得する

Last updated at Posted at 2018-07-18

準備するもの(周辺機器)

1.Raspberry Pi 3
2.dh11(湿度、温度センサー)
3.ブレッドボード(Raspberry Pi初心者キット使用)
4.オスジャンパー、メスジャンパー(Raspberry Pi初心者キット使用)
5.抵抗(Raspberry Pi初心者キット使用)

dh11+ブレッドボード+Raspberry Piを接続

dh11の接続名称
スクリーンショット 2018-07-18 17.26.32.png

Raspberry Piの接続名称
スクリーンショット 2018-07-18 17.26.09.png

dh11+ブレッドボード+Raspberry Piを接続
※ブレッドボードと抵抗は必須
スクリーンショット 2018-07-18 17.25.51.png

温度・湿度を取得するサンプルpythonプログラムをダウンロード

gitインストール

sudo apt-get install git

サンプルpythonプログラムインストール

git clone https://github.com/szazo/DHT11_Python.git

サンプルスクリプト

dht11_example.py
import RPi.GPIO as GPIO
import dht11       # ・・・ ①
import time
import datetime

# initialize GPIO
GPIO.setwarnings(False)       # ・・・ ②
GPIO.setmode(GPIO.BCM)
GPIO.cleanup()

# read data using pin 14
instance = dht11.DHT11(pin=14)      # ・・・ ③

while True:
    result = instance.read()    # ・・・ ④
    if result.is_valid():    # ・・・ ⑤
        print("Last valid input: " + str(datetime.datetime.now()))
        print("Temperature: %d C" % result.temperature)    # ・・・ ⑥
        print("Humidity: %d %%" % result.humidity) 

    time.sleep(1)    # ・・・ ⑦

※③ ジャンパーの接続先のGPIO番号を設定します。今回は接続している14を設定します。

温度・湿度センサーサンプルスクリプト実行

sudo python dht11_example.py 

Last valid input: 2018-07-21 05:49:15.232504
Temperature: 29 C
Humidity: 63 %
Last valid input: 2018-07-21 05:49:17.393183
Temperature: 28 C
Humidity: 71 %
Last valid input: 2018-07-21 05:49:21.698929
Temperature: 29 C
Humidity: 79 %
1
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?