IoT LED Matrix
Subsequent to the work done of previous instructables (IoT Development With Mobile Directly), This instructables show how to develop an IoT LED Matrix with your mobile and a MINTIA sweet box.
Preparation
- an empty MINTIA sweet box
- 1 meter 144 units SK6812 3535 LED strip (only use 60 units)
- ESP-12E
- micro USB female connect board
- 3.3 V regulate board
- Lipo charge board
- Lipo battery 343450
- some coated copper wire
- a small piece of PET plastic plate
- a power switch
- a USB to TTL cable for initial program the ESP board
Flash NodeMCU Firmware and Nodemcu-httpserver
Follow my previous instructables to flash NodeMCU firmware and upload nodemcu-httpserver.
Programming
After the previous steps, you can program the ESP board any time with your mobile or the notebook through WiFi connection.
But it is better to test it in an earliest stage:
- browse the ESP board with the IP recorded in previous step, you can see the index page.
- click the Editor link
- copy and paste the led-matrix.html.txt file content to the editor page textarea
- fill in save file as "led-matrix.html"
- press save button
- wait few ten seconds for save complete
- copy and paste the led-matrix.lua code to the editor page textarea
- fill in save file as "led-matrix.lua"
- press save button
- wait few ten seconds for save and compile complete
- test browse to http://[your ESP IP]/led-matrix.html
Patch the MINTIA Sweet Box
- remove the sticker of the MINTIA sweet box
- split the box
- cut and remove all the plastic parts in the middle
Check Component Thickness
The MINTIA sweet box is around 7mm thick, the internal part is around 5mm thick. Deduct the LED strip thickness, only remain 3.3 mm for all other components.
The micro USB female board is a little thicker than that, so require some patch.
Design Layout
Everything just fit in the MINTIA sweet box.
LED Support Plate
Cut a PET plastic plate a little bit smaller than the MINITA internal size.
Assembly LED Strip
Cut 6 LED strips with 10 SK6812 units each.
Stick all LED strips to the PET plastic plate to make it become a LED matrix.
Soldering
LED Strip Matrix
- connect LED signal circuit in zigzag order from top left to bottom right
- connect LED strip Vcc altogether -> 3.3 V regulate board Vout
- connect LED strip GND altogether -> 3.3 V regulate board GND
ESP-12E Board
- RESET PIN (PIN 1), EN PIN (PIN 3), Vcc PIN (PIN 8) -> 3.3 V regulate board Vout
- GND PIN (PIN 15), GPIO15 (PIN 16) -> 3.3 V regulate board GND
- GPIO02 PIN -> LED strip DIN
- I have abused the micro USB connector D+ and D- PIN to Tx and Rx in case I need to debug
Lipo Charge Board
- Battery +ve -> Lipo battery +ve -> power switch -> 3.3 V regulate board Vin
- Battery -ve -> Lipo battery -ve -> 3.3 V regulate board GND
- Vin -> micro USB board 5V
- GND -> micro USB board GND
Happy Coding!
You can now:
- browse to http://[your ESP IP]/led-matrix.html for playing with your LED Matrix
- browse to http://[your ESP IP]/editor.html for editing and enhance your own code
led-matrix.lua is only a simple example, ESP with LED strip can make much more:
- utilize ESP board RTC and WiFi SNTP to make a slim clock
- led-text.lua show how can use html5 canvas to draw text on LED matrix
- and more