Initial Lessons on ESP8266 Arduino Sketch for InfluxDB
Dipping my toes in building a data monitoring system, I have an ESP8266 Arduino sketch that reads its analog input pin, converts it to original input voltage, and log that information to InfluxDB. Despite the simplicity of the sketch, I've already learned some very valuable lessons.
The Good
The Arduino libraries do a very good job of recovering from problems on their own, taking care of it so my Arduino sketch does not. The ESP8266 Arduino WiFi library can reconnect lost WiFi as long as I call WiFiMulti.run()
periodically. And the InfluxDB library doesn't need me to do anything special at all. I call InfluxDbClient.writePoint()
whenever I want to write data. If the connection was lost since initial connection, it will be re-established and the data point written with no extra work on my part. I've had this sketch up and running as I've taken the InfluxDB docker container offline to upgrade to newer versions, or performed firmware updates WiFI access point which takes wireless offline for a few minutes. This sketch recovered and resume logging data, no sweat.
The Bad
ESP8266 ADC (analog-to-digital converter) is pretty darned noisy when asked to measure within a narrow range of its full range of voltages as I am. The full range is 0-22V, and I'm typically only within a narrow band between 12-14V. I tried taking multiple measurements and averaging them, but that didn't seem to help very much.
This noisiness also made it hard to calibrate readings against voltage values as measured by my multi-meter. It's not difficult to take a meter reading and calculation a conversion factor for an ADC reading taken at the same time. But if the ADC value can drift even as the actual voltage is held steady, the conversion factor is unreliable. Even worse, since the conversion is done in my Arduino sketch, every time I want to refine this value, I had to hook up a computer and re-upload my Arduino sketch.
Since I expect to add more data sources to this system, I also expected to query by source to see data returned by each. For this first iteration, I tagged points with the MAC address of my ESP8266. This is a pretty good guarantee of uniqueness, but it is not very human-friendly. Or at least not to me, as I'm not in the habit of memorizing MAC addresses of my devices.
The Ugly
As typical of Arduino sketches, this sketch is running loop()
as fast as it could. Functionally speaking, this is fine. But it means the ESP8266 is always in a state of high power draw, with the WiFi stack always active and the CPU running as fast as it could. When the objective is merely to record measurements every minute or so, I could be far more energy efficient here.
Addressing these issues (and much more I'm sure) will be topic of future iterations. In the meantime, I have some data points and I want to graph them.
[Source code for this project is publicly accessible on GitHub]