AWS IoT SiteWise with raspberry pi Temperature Sensor DS18B20 Part I

So I wanted to run through this tutorial

https://aws.amazon.com/blogs/iot/collecting-organizing-monitoring-and-analyzing-industrial-data-at-scale-using-aws-iot-sitewise-part-1/

But instead of using simulated data I wanted to use a real temperature sensor.

Here is my adventure –

This post will take you through the setup of the temperature sensor https://pimylifeup.com/raspberry-pi-temperature-sensor/

And alternate post with similar setup is here https://www.raspberrypi-spy.co.uk/2013/03/raspberry-pi-1-wire-digital-thermometer-sensor/

These are my quick notes –

First up, the gear

Raspberry Pi

 Micro SD Card

 DS18B20 Temperature Sensor

 4.7k Resistor

 GPIO breakout kit

 Breadboard

 Breadboard Wire

1. First, connect the 3v3 pin from the Pi to the positive rail and a ground pin to the ground rail on the breadboard.

2. Now place the DS18B20 sensor onto the breadboard.

3. Place a 4.7k resistor between the positive lead and the output lead of the sensor.

4. Place a wire from the positive lead to the positive 3v3 rail.

5. Place a wire from the output lead back to pin #4 (Pin #7 if using physical numbering) of the Raspberry Pi.

6. Place a wire from the ground lead to the ground rail.

Raspberry Pi Temperature Sensor Diagram

Enable one wire support

sudo nano /boot/config.txt

add the following line to the bottom :

dtoverlay=w1-gpio,gpiopin=4

You can save the file using CTRL-X, Y then RETURN. The device is setup to report its temperature via GPIO4.

For the changes to take effect you will need to reboot using :

sudo reboot

Check that it’s working

load the correct modules.

sudo modprobe w1-gpio
sudo modprobe w1-therm

2. Now change into the devices directory and use ls to see the folders and files in the directory.

cd /sys/bus/w1/devices
ls

3. Now run the following command, change the numbering after cd to what has appeared in your directory by using the ls command. (If you have multiple sensors there will be more than one directory)

cd 28-000007602ffa

4. Now run the following command.

cat w1_slave

If it works you should see a line with YES, and t= something (this is your temp)

cat.PNG

One thing that tripped me up, I hadn’t pushed the GPIO breakout kit far enough into the breadboard! I also heat wrapped connectors to the temperature sensor.

IMG_8786.jpg

Read part II

https://michaelellerbeck.com/2020/01/10/aws-iot-sitewise-with-raspberry-pi-temperature-sensor-ds18b20-part-ii/

Advertisement

One comment

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s