Go to file
2017-05-04 21:49:34 -05:00
data Fixed GitHub link 2017-02-18 14:40:56 -06:00
Commands.h Initial commit. 2016-03-10 07:57:02 -06:00
esp8266-fastled-webserver.ino Ssupport for ULTiM8x8 and Adafruit Feather ESP8266 2017-05-04 21:06:56 -05:00
Field.h Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
Fields.h Added palette selector 2017-02-18 13:48:33 -06:00
FSBrowser.h Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
GradientPalettes.h Initial commit. 2016-03-10 07:57:02 -06:00
LICENSE Initial commit. 2016-03-10 07:57:02 -06:00
Noise.h Ssupport for ULTiM8x8 and Adafruit Feather ESP8266 2017-05-04 21:06:56 -05:00
README.md Added ULTiM8x8 demo video pic & link 2017-05-04 21:49:34 -05:00
TwinkleFOX.h Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
Twinkles.h Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
web-app-simple-thumb.png Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
web-app-simple.png Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
web-app-thumb.png Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
web-app.png Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
webapp.png Initial commit. 2016-03-10 07:57:02 -06:00

Ultim8x8 RGB LED Panel + FastLED + ESP8266 Web Server

Control an ULTiM8x8 RGB LED Panel with an ESP8266 via a web browser.

Demo Video:

Demo Video

Hardware

Adafruit Feather HUZZAH with ESP8266 WiFi

Adafruit Feather HUZZAH with ESP8266 WiFi

ULTiM8x8 RGB LED Panel

ULTiM8x8 RGB LED Panel

Features

  • Turn the LEDs on and off
  • Adjust the brightness
  • Change the display pattern
  • Adjust the color

Web App

Web App

Patterns are requested by the app from the ESP8266, so as new patterns are added, they're automatically listed in the app.

The web app is stored in SPIFFS (on-board flash memory).

The web app is a single page app with separate files for js and css, using jQuery and Bootstrap. It has buttons for On/Off, a slider for brightness, a pattern selector, and a color picker (using jQuery MiniColors). Event handlers for the controls are wired up, so you don't have to click a 'Send' button after making changes. The brightness slider and the color picker use a delayed event handler, to prevent from flooding the ESP8266 web server with too many requests too quickly.

Installing

The web app needs to be uploaded to the ESP8266's SPIFFS. You can do this within the Arduino IDE after installing the Arduino ESP8266FS tool.

With ESP8266FS installed run the sketch and then upload the web app using ESP8266 Sketch Data Upload command in the Arduino Tools menu.

Compression

The web app files can be gzip compressed before uploading to SPIFFS by running the following command:

gzip -r data/

The ESP8266WebServer will automatically serve any .gz file. The file index.htm.gz will get served as index.htm, with the content-encoding header set to gzip, so the browser knows to decompress it. The ESP8266WebServer doesn't seem to like the Glyphicon fonts gzipped, though, so I decompress them with this command:

gunzip -r data/fonts/

REST Web services

The firmware implements basic RESTful web services using the ESP8266WebServer library. Current values are requested with HTTP GETs, and values are set with POSTs using query string parameters. It can run in connected or standalone access point modes.