Go to file
Lorenz Nimmervoll 8d6eafe8bf
Merge pull request #29 from WarDrake/mDNS
Adding mDNS ability to the webserver to avoid looking for the ip
2020-04-11 10:28:16 +02:00
.vs removed file 2019-03-26 19:55:15 +01:00
data [ImgBot] Optimize images 2019-10-04 09:47:37 +00:00
gallery [ImgBot] Optimize images 2019-10-04 09:47:37 +00:00
software_screenshots added screenshots 2020-02-01 09:42:22 +01:00
.gitignore added native alexa support, new patterns, sound reactive mode, code cleanup, new documentation 2020-02-01 09:39:15 +01:00
Commands.h Initial commit. 2016-03-10 07:57:02 -06:00
DEPRICATED_NodeRED_Flow.txt added native alexa support, new patterns, sound reactive mode, code cleanup, new documentation 2020-02-01 09:39:15 +01:00
DEPRICATED_Node_RED_Readme.md added native alexa support, new patterns, sound reactive mode, code cleanup, new documentation 2020-02-01 09:39:15 +01:00
FSBrowser.h Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
Field.h Updated with latest changes from Tree v2 2016-12-18 16:02:44 -06:00
Fields.h Adapted code to work with the DIY-Nanoleafs 2019-01-13 16:45:50 +01:00
GradientPalettes.h Adapted code to work with the DIY-Nanoleafs 2019-01-13 16:45:50 +01:00
LICENSE Initial commit. 2016-03-10 07:57:02 -06:00
README.md added native alexa support, new patterns, sound reactive mode, code cleanup, new documentation 2020-02-01 09:39:15 +01:00
Software_Installation.md mini hotfixes 2020-02-01 10:26:08 +01:00
TwinkleFOX.h Adapted code to work with the DIY-Nanoleafs 2019-01-13 16:45:50 +01:00
Twinkles.h Adapted code to work with the DIY-Nanoleafs 2019-01-13 16:45:50 +01:00
esp8266-nanoleaf-webserver.ino Merge pull request #29 from WarDrake/mDNS 2020-04-11 10:28:16 +02:00
wiring.jpg [ImgBot] Optimize images 2020-02-01 08:44:07 +00:00

README.md

Nanoleaf Web Server

This is a fork of jasoncoon's esp8266 fastled webserver that was adapted to control the colors of my DIY-Nanoleaf Replica.

Nanoleafs

Changelog

01.02.2020, Native Alexa Update

  • NodeRED part is now DEPRECATED
  • The Nanoleaf Replica allows now for NATIVE Alexa support without the need of an extra Raspberry Pi. When added to the Smart Home devices in the Alexa app, the nanoleafs will appear as Phillips Hue devices.
  • Added Strobe Pattern
  • Added Sound Reactive support
  • Some code cleanup and new parameters to configure
  • New step by step installation instructions (Software_Installation.md)

24.02.2019, NodeRED Update (Depricated)

  • Node-RED integration was added
  • Alexa support via NodeRED

Bill of Materials

Hardware

Check out the project on Thingiverse for more details.

https://www.thingiverse.com/Surrbradl08/things

Installation

FOR INSTALLATION REFER TO THE Software_Installation.md

Features

  • Turn the LEDs on and off
  • Appear as an ALEXA SMART HOME DEVICE
  • Sound Reactive Mode
  • Adjust the brightness, color and patterns
  • Play over 30+ patterns in Autoplay

Web App

Webinterface

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

Circuit

circuit without Logic level converter

Technical

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 that uses 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.

The only drawback to SPIFFS that I've found so far is uploading the files can be extremely slow, requiring several minutes, sometimes regardless of how large the files are. It can be so slow that I've been just developing the web app and debugging locally on my desktop (with a hard-coded IP for the ESP8266), before uploading to SPIFFS and testing on the ESP8266.

Alexa

The code has an optional feature to be able to control the lamp via Alexa on any Amazon Echo device. For setup instructions refer to Software_Installation.md document.

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.