Open-source IoT Platform

Device management, data collection, processing and visualization
for your IoT projects
Learn about Thingsboard

Thursday, January 5, 2017

Temperature upload over MQTT using Raspberry Pi and DHT22 sensor

Thingsboard is an open-source server-side platform that allows you to monitor and control IoT devices. It is free for both personal and commercial usage and you can deploy it anywhere. If this is your first experience with the platform we recommend to review what-is-thingsboard page and getting-started guide.

This sample application performs collection of temperature and humidity values produced by DHT22 sensor and further visualization on the real-time web dashboard. Collected data is pushed via MQTT to Thingsboard server for storage and visualization. The purpose of this application is to demonstrate Thingsboard data collection API and visualization capabilities.

The DHT22 sensor is connected to Raspberry Pi. Raspberry Pi offers a complete and self-contained Wi-Fi networking solution. Raspberry Pi push data to Thingsboard server via MQTT protocol by using paho mqtt python library. Data is visualized using built-in customizable dashboard. The application that is running on Raspberry Pi is written on python which is quite simple and easy to understand.

The video below demonstrates the final result of this tutorial.





Once you complete this sample/tutorial, you will see your sensor data on the following dashboard.

image

Prerequisites

You will need to Thingsboard server up and running. Use either Live Demo or Installation Guide to install Thingsboard.

List of hardware and pinouts

image

image

  • Resistor (between 4.7K and 10K)

  • Breadboard

  • 2 female-to-female jumper wires

  • 10 female-to-male jumper wires

  • 3 male-to-male jumper wire

Wiring schemes

DHT-22 Pin Raspberry Pi Pin
DHT-22 Data Raspberry Pi GPIO 4
DHT-22 VCC Raspberry Pi 3.3V
DHT-22 GND (-) Raspberry Pi GND

Finally, place a resistor (between 4.7K and 10K) between pin number 1 and 2 of the DHT sensor.

The following picture summarizes the connections for this project:

image

Thingsboard configuration

Note Thingsboard configuration steps are necessary only in case of local Thingsboard installation. If you are using Live Demo instance all entities are pre-configured for your demo account. However, we recommend to review this steps because you will still need to get device access token to send requests to Thingsboard.

Provision your device

This step contains instructions that are necessary to connect your device to Thingsboard.

Open Thingsboard Web UI (http://localhost:8080) in browser and login as tenant administrator

Goto “Devices” section. Click “+” button and create device with name “DHT22 Demo Device”.

image

Once device created, open its details and click “Manage credentials”. Copy auto-generated access token from the “Access token” field. Please save this device token. It will be referred to later as $ACCESS_TOKEN.

image

Click “Copy Device ID” in device details to copy your device id to clipboard. Paste your device id to some place, this value will be used in further steps.

Provision your dashboard

This step contains instructions that are necessary to provision new dashboard with map widgets to Thingsboard.

Open “Terminal” and download file containing demo dashboard JSON:

curl -L https://thingsboard.io/docs/samples/raspberry/resources/dht22_temp_dashboard.json > dht22_temp_dashboard.json

Update dashboard configuration with your device Id (obtained in previous step) by issuing the following command:

sed -i "s/{DEVICE_ID}/<your device id>/" dht22_temp_dashboard.json

Obtain JWT token by issuing login POST command:

curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"username":"[email protected]", "password":"tenant"}' 'http://localhost:8080/api/auth/login'

You will receive response in the following format:

{"token":"$YOUR_JSON_TOKEN", "refreshToken": "$REFRESH_TOKEN"}

copy $YOUR_JSON_TOKEN to some place. Note that it will be valid for 15 minutes by default.

Execute dashboard upload command:

curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'X-Authorization: Bearer $YOUR_JSON_TOKEN' -d "@dht22_temp_dashboard.json" 'http://localhost:8080/api/dashboard'

Programming the Raspberry Pi

MQTT library installation

Following command will install MQTT Python library:

sudo pip install paho-mqtt

Adafruit DHT library installation

Install python-dev package:

sudo apt-get install python-dev

Downloading and install the Adafruit DHT library:

git clone https://github.com/adafruit/Adafruit_Python_DHT.git
cd Adafruit_Python_DHT
sudo python setup.py install

Application source code

Our application consists of single python script that is well commented. You will need to modify THINGSBOARD_HOST constant to match your Thingsboard server installation IP address or hostname. Use “demo.thingsboard.io” if you are using live demo server.

The value of ACCESS_TOKEN constant corresponds to sample DHT22 demo device. If you are using live demo server - get the access token for pre-provisioned “DHT22 Demo Device”.

resources/mqtt-dht22.py
import os
import time
import sys
import Adafruit_DHT as dht
import paho.mqtt.client as mqtt
import json

THINGSBOARD_HOST = 'demo.thingsboard.io'
ACCESS_TOKEN = 'DHT22_DEMO_TOKEN'

# Data capture and upload interval in seconds. Less interval will eventually hang the DHT22.
INTERVAL=2

sensor_data = {'temperature': 0, 'humidity': 0}

next_reading = time.time() 

client = mqtt.Client()

# Set access token
client.username_pw_set(ACCESS_TOKEN)

# Connect to Thingsboard using default MQTT port and 60 seconds keepalive interval
client.connect(THINGSBOARD_HOST, 1883, 60)

client.loop_start()

try:
    while True:
        humidity,temperature = dht.read_retry(dht.DHT22, 4)
        humidity = round(humidity, 2)
        temperature = round(temperature, 2)
        print(u"Temperature: {:g}\u00b0C, Humidity: {:g}%".format(temperature, humidity))
        sensor_data['temperature'] = temperature
        sensor_data['humidity'] = humidity

        # Sending humidity and temperature data to Thingsboard
        client.publish('v1/devices/me/telemetry', json.dumps(sensor_data), 1)

        next_reading += INTERVAL
        sleep_time = next_reading-time.time()
        if sleep_time > 0:
            time.sleep(sleep_time)
except KeyboardInterrupt:
    pass

client.loop_stop()
client.disconnect()

Running the application

This simple command will launch the application:

python mqtt-dht22.py

Data visualization

Finally, open Thingsboard Web UI. You can access this dashboard by logging in as a tenant administrator.

In case of local installation:

In case of live-demo server:

  • login: your live-demo username (email)
  • password: your live-demo password

See live-demo page for more details how to get your account.

Go to “Devices” section and locate “DHT22 Demo Device”, open device details and switch to “Latest telemetry” tab. If all is configured correctly you should be able to see latest values of “temperature” and “humidity” in the table.

image

After, open “Dashboards” section then locate and open “DHT22: Temperature & Humidity Demo Dashboard”. As a result you will see two digital gauges and two time-series charts displaying temperature and humidity level (similar to dashboard image in the introduction).

Next steps

Browse other samples or explore guides related to main Thingsboard features:

Your feedback

If you found this article interesting, please leave your feedback in the comments section, post questions or feature requests on the forum and “star” our project on the github in order to stay tuned for new releases and tutorials.

16 comments :

  1. this give error
    curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"username":"[email protected]", "password":"tenant"}' 'http://localhost:8080/api/auth/login'

    error is "curl: (7) Failed to connect to localhost port 8080: Connection refused"

    please help me

    ReplyDelete
    Replies
    1. Do you have ThingsBoard installed locally? If not, you need to replace localhost with server address

      Delete
  2. In above mentioned problem,I have replaced username and password with mine still its showing same error,
    I also tried with "curl -v"

    ReplyDelete
  3. This comment has been removed by a blog administrator.

    ReplyDelete
  4. This comment has been removed by a blog administrator.

    ReplyDelete
  5. A debt of gratitude is in order for a brilliant offer. Your article has demonstrated your diligent work and experience you have in this field. Splendid .i cherish it perusing. NessTool Download

    ReplyDelete
  6. Your article has provoked a considerable measure of positive hobby. I can see why since you have made such a decent showing of making it fascinating. Delta Emulator Download

    ReplyDelete
  7. hi there,
    I used this tutorial to setup a DHT22 Sensor and it was working just fine.
    Since 2 days i get the following Error MEssage when i try to start the "mqtt-dht22.py"-Script:

    Traceback (most recent call last):
    File "mqtt-dht22.py", line 33, in
    humidity = round(humidity, 2)
    TypeError: a float is required

    Do i need to change the line of Code? Because, as i said, it was working just fine, a few days ago.

    ReplyDelete
  8. Essays are personal. They allow writers to open up and share their individual ideals, opinions and aspirations utilizing their readers. This is why, essay writing, is a bit more contemplative and much less fact driven. BELL TEST

    ReplyDelete
  9. The electronic temperature controller additionally contains indicative projects that check for equipment, framework and programming issues.CAREL Malaysia

    ReplyDelete
  10. I read the actual write-up along with totally go along with You. Your own reveal is wonderful and I will probably reveal the item along with my friends along with fb connections. Only has a website in your area of interest I would provide you with a link exchange. Your content need more coverage along with trust my own bookmarking can help you get more traffic. Great write-up, again ! ! enail kit

    ReplyDelete
  11. I am reading marketing dissertation topics, and i find a post about thingsborad. It allows you to monitor and control IoT devices. It is an open source platform, that is free for both personal and commercial usage.

    ReplyDelete
  12. By using a DHT22 sensor, this sample application collects temperature and humidity measurements, bubble shooter which are then further visualized on a real-time online dashboard. The ThingsBoard server receives collected data over MQTT for storage and viewing. This application's goal is to show off the data gathering API and visualization capability of ThingsBoard.

    ReplyDelete
  13. With time and various other factors, you can face issues with your Brother printer. Such as the Brother printer not printing clearly is an issue that can arise due to various causes.

    ReplyDelete
  14. Headphones Canada is a game-changer for all music enthusiasts! Their wide selection of top-notch headphones and exceptional sound quality make them the go-to destination for audio lovers. Get ready to immerse yourself in a world of music like never before

    ReplyDelete
  15. It's fantastic technology to use a Raspberry Pi and DHT22 sensor to update a computer on the weather via MQTT! Consider how this configuration complements the saudi medical cloud to provide beneficial health tracking.

    ReplyDelete