Datalogging Examples

Examples of Datalogging Using Microcontrollers

tigoe.github.io
WiFi Datalogging
  Node.js Datalogging Server
  Google Sheets Datalogging Server
Tracking Time
MKR Series Datalogging
Home

This project is maintained by tigoe

Datalogging to a Server via MQTT and WiFi

The datalogging application described here logs data to a server via WiFi using a network-enabled microcontroller as a datalogging client. It is based on the WiFi datalogging application, but instead of HTTP, the microcontroller clients use the Message Queueing Telemetry Transfer (MQTT) protocol. For more details on this, and other examples, see my mqtt-examples repository.

These examples should all work on the network-enabled MKR boards, along with the Nano 33 IoT and other SAMD-based boards which have network capability. They can likely work on Espressif-based boards (ESP32, ESP8266) with some modification.

This application uses shiftr.io as its MQTT broker, but it should work with any MQTT broker by changing the address and crednetials.

What is MQTT?

MQTT, is a lightweight IP-based messaging protocol designed for communication between sensors, controllers, and other devices. It’s designed to support equipment that may not always be online, or that have limited processing power. Unlike HTTP, it’s message-based, so once a client sends a message, there’s no need to wait for a response. MQTT server programs are called brokers. A broker keeps track of messages from clients. Clients can publish messages to a broker on a given topic, or can subscribe to an existing topic to see messages from other clients.

MQTT Datalogger System Diagram

Figure 1 shows the system diagram for this datalogger. There are several microcontroller-based sensor clients, shown at the top of the diagram that all publish messages to a topic called light-readings on an MQTT broker. There are two other clients: a browser-based client written in HTML and JavaScript, and a server-based client written in node.js. The HTML/JS client subscribes to the light-readings topic and displays any incoming messages in the browser. The node.js client also subscribes to the light-readings topic. When it receives a new message, it makes a HTTP POST request to a Google Script server that posts to a Google Sheets spreadsheet. This Google script/spreadsheet combination is the same as what’s used in the Google Sheets Datalogger example.

The advantage of using MQTT for this datalogging application is that the microcontrollers don’t have to wait for a reply from the server, and can therefore be inactive and using less energy more of the time. It’s also simpler to program than an HTTP client.

Figure 1. System diagram of the MQTT datalogger

Figure 1. System diagram of the MQTT datalogger

MQTT Microcontroller Clients

There are several MQTT microcontroller clients in this repository. Though they are all written with a specific sensor in mind, you could change the sensor out for any sensor, and modify the code accordingly. The MQTT part of the code would remain the same.

MQTT JavaScript Clients

As mentioned in the system diagram description above, there are two JavaScript clients, one for the browser, and one for a server running node.js. The browser client can run in a browser with or without a server, as all the code runs in-browser only. It subscribes to the light-readings topic and reports any new messages in the HTML. It’s included as the public HTML of the node client so that you can use them together if you want. They work well on glitch.com.

The node.js server client subscribes to the light-readings topic and sends an HTTP POST request to a Google script to add the readings to a spreadsheet. The Google script/sheets part of this application is identical to the Google Sheets Datalogger example in this repository.