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 DHT11 sensor. Collected data is pushed to ThingsBoard for storage and visualization. The purpose of this application is to demonstrate ThingsBoard data collection API and visualization capabilities.
The DHT11 sensor is connected to NodeMCU. NodeMCU push data to ThingsBoard server via MQTT protocol. Data is visualized using built-in customizable dashboard. The application that is running on NodeMCU is written using Lua scripting language which is quite simple and easy to understand.
Once you complete this sample/tutorial, you will see your sensor data on the following dashboard.
You will need to have ThingsBoard server up and running. Use either Live Demo or Installation Guide to install ThingsBoard.
NodeMCU Pin | DHT-11 Pin |
---|---|
NodeMCU 3.3V | DHT-11 VCC |
NodeMCU GND | DHT-11 GND (-) |
NodeMCU D5 | DHT-11 Data (S) |
We need to download and build firmware with Lua interpreter for NodeMCU. This process is described in official documentation and there are multiple ways to do this. You can use cloud build service for this purpose, however, we will use Docker Image.
Use the following commands to clone the official GitHub repository for NodeMCU firmware.
$ mkdir -p ~/samples/nodemcu
$ cd ~/samples/nodemcu
$ git clone https://github.com/nodemcu/nodemcu-firmware.git
There is ability to customize firmware by changing two files:
Please find and update line below to specify custom baud rate.
...
#define BIT_RATE_DEFAULT BIT_RATE_115200
...
In our case, all necessary modules included by default. However, please check that these modules are uncommented.
...
define LUA_USE_MODULES_DHT
...
define LUA_USE_MODULES_MQTT
...
The easiest way to build nodemcu firmware is by using prepared docker container for that task.
Please visit docker installation page and install docker on your machine.
After installation you need to download docker image from docker hub by the command:
$ sudo docker pull marcelstoer/nodemcu-build
Eventually build the firmware by next command:
$ sudo docker run --rm -ti -v ~/samples/nodemcu/nodemcu-firmware:/opt/nodemcu-firmware marcelstoer/nodemcu-build
As the result binary firmware located in the ~/samples/nodemcu/nodemcu-firmware/bin folder.
Our application consists of three .lua files:
If you are using live demo server - get the access token for pre-provisioned “DHT11 Demo Device”.
resources/config.lua |
---|
|
resources/dht11.lua |
---|
|
resources/init.lua |
---|
|
Before flashing firmware, we need to figure out which serial interface using to communicate with NodeMCU.
$ dmesg
...
[845270.901509] usb 3-3: ch341-uart converter now attached to ttyUSB0
...
In our case /dev/ttyUSB0 is used for communication.
In order to flash firmware for NodeMCU, please download and install following utilities
Upload nodemcu firmware using command:
$ sudo ./esptool.py -b 115200 write_flash --flash_mode dio --flash_size 32m 0x0 ~~/samples/nodemcu/nodemcu-firmware/bin/nodemcu_integer_master_*.bin --verify
Upload application files using following commands:
$ sudo ./luatool.py --port /dev/ttyUSB0 -b 115200 --src config.lua --dest config.lua -v
$ sudo ./luatool.py --port /dev/ttyUSB0 -b 115200 --src dht11.lua --dest dht11.lua -v
$ sudo ./luatool.py --port /dev/ttyUSB0 -b 115200 --src init.lua --dest init.lua -v
Sometimes you can observe frequent blinking of the blue led after firmware upload. This is probably related to missing initialization data. Use following command to fix this:
$ sudo ./esptool.py -b 115200 write_flash --flash_mode dio --flash_size 32m 0x3fc000 ~/samples/nodemcu/nodemcu-firmware/bin/esp_init_data_default.bin --verify
Sometimes you are not able to upload lua files. Try to reset the device and execute a command again within the first 10 seconds after reset. If no success, try to delete init.lua code from NodeMCU:
$ sudo ./luatool.py --port /dev/ttyUSB0 -b 115200 --delete init.lua
In order to simplify this guide, we have included “Temperature & Humidity Demo Dashboard” to the demo data that is available in each ThingsBoard installation. You still can modify this dashboard: tune, add, delete widgets, etc. You can access this dashboard by logging in as a tenant administrator. Use
in case of local ThingsBoard installation.
Once logged in, open Dashboards->Temperature & Humidity Demo Dashboard page. You should observe demo dashboard with live data from your device (similar to dashboard image in the introduction).
Browse other samples or explore guides related to main ThingsBoard features:
Don’t hesitate to star ThingsBoard on github to help us spread the word. If you have any questions about this sample - post it on the issues.
入门指南 - 这些指南提供了ThingsBoard主要功能的快速概述。
安装指南 - 了解如何在各种操作系统上安装ThingsBoard。
设备连接 - 了解如何根据您的连接方式或解决方案连接设备。
数据看板 - 这些指南包含有关如何配置复杂的ThingsBoard仪表板的说明。
数据处理 - 了解如何使用ThingsBoard规则引擎。
数据分析 - 了解如何使用规则引擎执行基本的分析任务。
高级功能 - 了解高级ThingsBoard功能。
开发指南 - 了解ThingsBoard中的贡献和开发。