DEV Community

David G. Simmons
David G. Simmons

Posted on • Originally published at davidgs.com on

IoT on QuestDB

As you can well imagine, I’ve been super busy in my hew job at QuestDB so this has taken me longer than I would have liked, but here we are. If you know me at all, you know that one of the first things I always do with new things is, well, connect things to them! So I immediately went to connect an IoT device to QuestDB to see how it went. Unsurprisingly, it went quite well. So here’s how it went, from start to finish.

The Database Part

The first thing I had to do was a to get QuestDB up and running. Luckily, this is very straightforward. I guess I could have gone the Docker route, but as you’re probably aware, I’m not a huge fan of Docker (in no small part due to the fact that it will literally suck the life out of a MacOS laptop). There’s also (for you MacOS users) brew install questdb but since I work here, and I wanted to test out the latest and greatest web console, I decided to build from source:

It builds really quickly due to the lack of external dependencies, so that is great! Then all I have to do is start it:

That is literally all there is to getting QuestDB built and running. But that’s just the first part. Now it’s time to do something mildly useful with it. First, I’ll need to create a table in QuestDB to store my IoT Data (A bit more on this later, so store a pointer to this).

Screen Shot 2020 06 04 at 9 15 33 AM

Remember, we’re doing SQL here, so it there’s no new language or syntax to learn. This is a really simple table that I’m building because I’m going to be using an ESP8266 with a (really awful) DHT11 temperature and humidity sensor on it.

The Sensor Part

For this I’m going to use an ESP8266-based WEMOS D1 Mini only because I happen to have a giant pile of them lying around. I buy them in bulk because they are a dollar or 2 each, easy to use, and largely disposable if I blow one up (which I do with alarming regularity.). The circuit is extremely simple to do:

Screen Shot 2020 06 04 at 9 24 39 AM

I used an actual WEMOS Shield with the DHT11 on it, so I didn’t have to breadboard it, but this schematic gives you an idea of how simple the wiring is. It’s literally 3 wires.

The Code Part

Here is where the magic happens. How I actually send the sensor data to the database. There is a simple example program included with the Adafruit DHT Unified Sensor Library that I recommend starting with in order to make this a bit easier. It already has all the parts to read from the sensor so you don’t have to write those from scratch. Remember: Good developers copy, but great developers paste!

Since I’m using the 8266, and I’ll need internet connectivity, I’ll need all the WiFi bits:

#include <WiFiServerSecure.h>#include <WiFiClientSecure.h>#include <WiFiClientSecureBearSSL.h>#include <ESP8266WiFi.h>#include <ESP8266WiFiMulti.h>#include <WiFiUdp.h>#include <ESP8266WiFiType.h>#include <CertStoreBearSSL.h>#include <ESP8266WiFiAP.h>#include <WiFiClient.h>#include <BearSSLHelpers.h>#include <WiFiServer.h>#include <ESP8266WiFiScan.h>#include <WiFiServerSecureBearSSL.h>#include <ESP8266WiFiGeneric.h>#include <ESP8266WiFiSTA.h>#include <WiFiClientSecureAxTLS.h>#include <WiFiServerSecureAxTLS.h>
Enter fullscreen mode Exit fullscreen mode

Really all you have to do is go to the ‘Sketch’ Menu, Choose ‘Include Library’ and select the ‘ESP8266WiFi’ library and you get all this stuff imported for you.

Here’s some boiler-plate code you can always use to get your ESP8266 on your WiFi:

#include <Adafruit\_Sensor.h>#include <DHT.h>#include <DHT\_U.h>#define DHTPIN D4 // Digital pin connected to the DHT sensor#define DHTTYPE DHT11 // DHT 11#define QUEST\_SERVER "10.10.10.10" // use your server's IP address!#define QUEST\_PORT 9009#define SENSOR\_ID 4343 // I made this up#define SENSOR\_NAME "DHT11-WEMOS"const char\* ssid = "your-ssid";const char\* password = "your-password";DHT\_Unified dht(DHTPIN, DHTTYPE);uint32\_t delayMS;WiFiUDP Udp;void setup(){ Serial.begin(115200); delay(10); // We start by connecting to a WiFi network Serial.print("Connecting to "); Serial.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL\_CONNECTED) { delay(500); Serial.print("."); } Serial.println(""); Serial.println("WiFi connected"); Serial.println("IP address: "); Serial.println(WiFi.localIP()); dht.begin(); Udp.begin(QUEST\_PORT); Serial.println(F("DHTxx Unified Sensor Example")); // Print temperature sensor details. sensor\_t sensor; dht.temperature().getSensor(&amp;sensor); Serial.println(F("------------------------------------")); Serial.println(F("Temperature Sensor")); Serial.print (F("Sensor Type: ")); Serial.println(sensor.name); Serial.print (F("Driver Ver: ")); Serial.println(sensor.version); Serial.print (F("Unique ID: ")); Serial.println(sensor.sensor\_id); Serial.print (F("Max Value: ")); Serial.print(sensor.max\_value); Serial.println(F("°C")); Serial.print (F("Min Value: ")); Serial.print(sensor.min\_value); Serial.println(F("°C")); Serial.print (F("Resolution: ")); }
Enter fullscreen mode Exit fullscreen mode

That gets the basics set up. Running that should get you a WiFi connection and a fully configured DHT11 sensor. We’re almost ready to start sending data to the database.

If you were paying attention, and read the code, you’ll have noticed the UDP stuff I snuck in there. That’s because we’re going to make this super easy and use UDP to send our data. And there’s a really good reason for that: InfluxDB Line Protocol. You see, QuestDB has a built-in InfluxDB Line Protocol listener, but (for now) it’s only listening on a UDP port. So we’re going to use that.

Now, to send some data:

void loop() { // Delay between measurements. delay(delayMS); char \*buffer; buffer = (char \*)malloc(256); // Get temperature event and print its value. double temp = -212; double hum = -1; sensors\_event\_t event; dht.temperature().getEvent(&amp;event); if (isnan(event.temperature)) { Serial.println(F("Error reading temperature!")); } else { Serial.print(F("Temperature: ")); Serial.print(event.temperature); temp = event.temperature; Serial.println(F("°C")); } // Get humidity event and print its value. dht.humidity().getEvent(&amp;event); if (isnan(event.relative\_humidity)) { Serial.println(F("Error reading humidity!")); } else { Serial.print(F("Humidity: ")); Serial.print(event.relative\_humidity); hum = event.relative\_humidity; Serial.println(F("%")); } if(temp != -212 &amp;&amp; hum != -1){ char tTemp[10]; char hTemp[10]; dtostrf(temp, 4, 2, tTemp); dtostrf(hum, 4, 2, hTemp); sprintf(buffer, "iot,dev\_id=%d,dev\_name=%s temp\_c=%s,humidity=%s", SENSOR\_ID, SENSOR\_NAME, tTemp, hTemp); Serial.println(buffer); Udp.beginPacket(QUEST\_SERVER, QUEST\_PORT); Udp.write(buffer); Udp.endPacket(); } free(buffer);}
Enter fullscreen mode Exit fullscreen mode

Yeah, there’s a lot going on in there. So let’s break it down. First, I’m creating a buffer to hold the data I’m going to send, and then I’ll do a read of the sensor. I set the temp and hum variables to values that I know the sensor will never return so that I can check that I got valid readings later, to avoid sending gibberish to the database.

I have to do some shenanigans with the temperature and humidity values in there because one of the shortcomings of Arduinos is that they don’t have sprintf support for doubles. I know. So I simply turn them into strings and move on. Once they arrive at the database, they are interpreted as doubles and life is good. Not worth fighting about. I can then construct a buffer with straight line protocol and ship it off to QuestDB over UDP.

Don’t forget to free the memory!

That Pointer

Remember I told you to set a pointer earlier about creating the database? Well, here’s where I come back to that. You don’t actually have to create the database ahead of time unless you want to do things like set indexes, etc. If all you want to do is have straight values in there, then guess what? Schema-on-write is a thing here. You can just start writing data to the database, and it will happily store them for you. Pretty cool stuff.

Querying the Data

Using the QuestDB Console, you can then query the data to make sure you’re getting what you expect:

That’s exactly what I expected!

What’s Next

Now it’s time to start building some dashboards, etc. on top of this. I’m currently working on connecting this all up with Node Red, so that may be my next post. We’re also working on support for Grafana, which will be huge, so stay tuned for that. If you like what you see here, pleases go give us a star on GitHub, and follow the project if you’d like to get updates!

Latest comments (0)