4.6 KiB
Measure temperature - Raspberry Pi
In this part of the lesson, you will add a temperature sensor to your Raspberry Pi.
Hardware
The sensor you'll use is a DHT11 humidity and temperature sensor, combining 2 sensors in one package. This is fairly popular, with a number of commercially available sensors combining temperature, humidity and sometimes atmospheric pressure. The temperature sensor component is a negative temperature coefficient (NTC) thermistor, a thermistor where the resistance decreases as the temperature increases.
This is a digital sensor, so has an onboard ADC to create a digital signal containing the temperature and humidity data that the microcontroller can read.
Connect the temperature sensor
The Grove temperature sensor can be connected to the Raspberry Pi.
Task
Connect the temperature sensor
-
Insert one end of a Grove cable into the socket on the humidity and temperature sensor. It will only go in one way round.
-
With the Raspberry Pi powered off, connect the other end of the Grove cable to the digital socket marked D5 on the Grove Base hat attached to the Pi. This socket is the second from the left, on the row of sockets next to the GPIO pins.
Program the temperature sensor
The device can now be programmed to use the attached temperature sensor.
Task
Program the device.
-
Power up the Pi and wait for it to boot
-
Launch VS Code, either directly on the Pi, or connect via the Remote SSH extension.
⚠️ You can refer to the instructions for setting up and launch VS Code in lesson 1 if needed.
-
From the terminal, create a new folder in the
pi
users home directory calledtemperature-sensor
. Create a file in this folder calledapp.py
:mkdir temperature-sensor cd temperature-sensor touch app.py
-
Open this folder in VS Code
-
To use the temperature and humidity sensor, an additional Pip package needs to be installed. From the Terminal in VS Code, run the following command to install this Pip package on the Pi:
pip3 install seeed-python-dht
-
Add the following code to the
app.py
file to import the required libraries:import time from seeed_dht import DHT
The
from seeed_dht import DHT
statement imports theDHT
sensor class to interact with a Grove temperature sensor from theseeed_dht
module. -
Add the following code after the code above to create an instance of the class that manages the temperature sensor:
sensor = DHT("11", 5)
This declares an instance of the
DHT
class that manages the Digital Humidity and Temperature sensor. The first parameter tells the code the sensor being used is the DHT11 sensor - the library you are using supports other variants of this sensor. The second parameter tells the code the sensor is connected to digital portD5
on the Grove base hat.✅ Remember, all the sockets have unique pin numbers. Pins 0, 2, 4, and 6 are analog pins, pins 5, 16, 18, 22, 24, and 26 are digital pins.
-
Add an infinite loop after the code above to poll the temperature sensor value and print it to the console:
while True: _, temp = sensor.read() print(f'Temperature {temp}°C')
The call to
sensor.read()
returns a tuple of humidity and temperature. You only need the temperature value, so the humidity is ignored. The temperature value is then printed to the console. -
Add a small sleep of ten seconds at the end of the
loop
as the temperature levels don't need to be checked continuously. A sleep reduces the power consumption of the device.time.sleep(10)
-
From the VS Code Terminal, run the following to run your Python app:
python3 app.py
You should see temperature values being output to the console. Use something to warm the sensor, such as pressing your thumb on it, or using a fan to see the values change:
pi@raspberrypi:~/temperature-sensor $ python3 app.py Temperature 26°C Temperature 26°C Temperature 28°C Temperature 30°C Temperature 32°C
💁 You can find this code in the code-temperature/pi folder.
😀 Your temperature sensor program was a success!