This instructables show how to use an ESP8266 and some NeoPixels to create an IoT Emoji Sign.
Any ESP8266 board should be ok. This time I am using WeMos D1 Mini Pro, this is smallest and thinnest dev board I can find. If you want it portable, choose a board with Lipo support.
This project use Arduino Adafruit_NeoPixel library, any compatibles LED chip is ok, such as WS2812, WS2812B, SK6812, SK6812mini ... etc.
This time I am using 64 LED chips of SK6812mini to make a tiny 8x8 matrix panel. But the soldering work is not the main job of this project, you can use a LED strip to simplify the job or even direct buy a 8x8 NeoPixel LED Matrix ;>
This time I am using a micro USB metal flexible tube cable as a sign stand.
If you simply buy a 8x8 NeoPixel LED Matrix, you can skip this steps.
If you are not yet install Arduino IDE, please download and install it from the official site:
https://www.arduino.cc/en/main/software
If you are not yet install Arduino ESP8266 support, please follow the steps in "Arduino on ESP8266" section:
https://github.com/esp8266/Arduino
Use Arduino Library install 3 depending libraries:
This project require some 8x8 pixels emoji, I google and get a simple set from Justin Cyr tweet:
https://twitter.com/JUSTIN_CYR/status/658031097805...
Then I resized the image and use base64decode.org convert to an base64 encoded string to embed it into the HTML.
You may find the resized image at: src/emojis.png
I have scripted a very simple HTML for selecting the emoji and then transfer the pixels to ESP8266 by Web Socket protocol in binary format.
Then I use html-minifier convert to a long single line string to embed it into Arduino code.
You may find the HTML file at: src/index.html
Please see the video demo for the setup and play details.
Here are the summary: