Finally I made some time to play a couple of hours with a new type of microcontroller that offers a lot of possibilities. Especially for Internet of Things purposes!
I’m talking about the ESP8266 which, at the time of introduction, was used often as a very cheap WIFI adapter for i.e. Arduino’s. The ESP8266 costs a couple of dollars. Meanwhile the community discovered that the chip contains a capable microcontroller with GPIO ports and it has WIFI onboard. Beside cheap it’s very small too! I’m not going to write a lot about what the ESP8266 is. You can find enough information using Google. I will write about what I’ve build with the device.
It’s been a while (2012/2013) since I’ve developed the Wireless LCD Display, Domotica Gateway, Energy Monitor, and so on. I made some changes lately by using Node-Red and MQTT for controlling devices and connecting things together. You should check TheThingBox.io which offers a ready to go Raspberry Pi image if you want to start playing with Node-Red and/or MQTT.
This post is about an ESP8266 (Type ESP12) with a 0.96″ OLED Display (with SSD1306 driver chip) receiving data via WiFi. The data is exchanged using MQTT. This application subscribes to multiple MQTT Topics and displays the data on the OLED screen. The ESP8266 is using NodeMCU firmware. (You can buy an ESP8266 with NodeMCU and FTDI on a board for less than 10 dollar on Ebay!! The Oled is available on Ebay too, search for “Oled 1306” and you’ll find something). The pins are defined in the sourcecode which you can download below.
I found a big part of the code in this post written by Mikejstb which I modified to how I wanted to use it.
Download the sourcecode below. Use Esplorer to upload the content as init.lua. Before trying this code, connect your NodeMCU ESP8266 to WiFi first.
MQTT - OLED Display for ESP8266 NodeMCU
Check the following useful links to start with:
- ESPlorer
- Getting Started With The ESPlorer IDE (Download free PDF)
- Home Automation Using ESP8266
No Comments Yet