This is the Arduino firmware for the ESP8266 based ESPixelStick. The ESPixelStick is a small wireless E1.31 sACN pixel controller designed to control a single strand of pixels. Pixel limitations are mostly based upon your desired refresh rate, around 680 pixels (4 universes) for a 25ms E1.31 source rate. MQTT support is provided as well for integration into home automation systems where an E1.31 source may not be present.
Since this project began, the firmware has moved beyond just pixel support for those with other ESP8266 based devices. The ESPixelStick firmware now supports outputting E1.31 streams to serial links as well. Note this is not supported on the ESPixelStick hardware, but intended for other ESP8266 devices such as Bill's RenardESP.
Being open source, you are free to use the ESPixelStick firmware on the device of your choice. The code however is written specifically for the ESPixelStick. The ESPixelStick V2 utilizes an ESP-01 module and provides high current connectors, fusing, power filtering, a programming interface and proper logic level buffering. If you're in the US and would like to purchase an ESPixelStick, they are available via Amazon. The proceeds go towards things like keeping my wife happy so I can work on this project :)
Along with the Arduino IDE, you'll need the following software to build this project:
- Adruino for ESP8266 - Arduino core for ESP8266
- Arduino ESP8266 Filesystem Uploader - Arduino plugin for uploading files to SPIFFS
- gulp - Build system required to process web sources. Refer to the html README for more information.
The following libraries are required:
- ArduinoJson - Arduino JSON Library
- ESPAsyncE131 - Asynchronous E1.31 (sACN) library
- RotaryEnoder - Rotary Encoder Library
- ESPAsyncTCP - Asynchronous TCP Library
- ESPAsyncUDP - Asynchronous UDP Library
- ESPAsyncWebServer - Asynchronous Web Server Library
- async-mqtt-client - Asynchronous MQTT Client
- Device mode is now a compile time option to set your device type and is configured in the top of the main sketch file. Current options are
ESPS_MODE_PIXEL
andESPS_MODE_SERIAL
. The default isESPS_MODE_PIXEL
for the ESPixelStick hardware. - Web pages must be processed, placed into
data/www
, and uploaded with the upload plugin. Gulp will process the pages and put them indata/www
for you. Refer to the html README for more information. - In order to use the upload plugin, the ESP8266 must be placed into programming mode and the Arduino serial monitor must be closed.
- ESP-01 modules must be configured for 1M flash and 128k SPIFFS within the Arduino IDE for OTA updates to work.
- For best performance, set the CPU frequency to 160MHz (Tools->CPU Frequency). You may experience lag and other issues if running at 80MHz.
The ESPixelStick firmware can generate the following outputs from incoming E1.31 streams, however your hardware must support the physical interface.
- WS2811 / WS2812 / WS2812b
- GE Color Effects
- DMX512
- Renard
MQTT can be configured via the web interface. When enabled, a payload of "ON" will tell the ESPixelStick to override any incoming E1.31 data with MQTT data. When a payload of "OFF" is received, E1.31 processing will resume. The configured topic is used for state, and the command topic will be the state topic appended with /set
.
For example, if you enter porch/esps
as the topic, the state can be queried from porch/esps
and commands can be sent to porch/esps/set
If using Home Assistant, it is recommended to enable Home Assistant Discovery in the MQTT configuration. Your ESPixelStick along with all effects will be automatically imported as an entity within Home Assistant utilzing "Device ID" as the friendly name. For manual configuration, you can use the following as an example. When disabling Home Assistant Discovery, ESPixelStick will attempt to remove its configuration entry from your MQTTT broker.
light:
- platform: mqtt
schema: json
name: "Front Porch ESPixelStick"
state_topic: "porch/esps"
command_topic: "porch/esps/set"
brightness: true
rgb: true
effect: true
effect_list:
- Solid
- Blink
- Flash
- Rainbow
- Chase
- Fire flicker
- Lightning
- Breathe
Here's an example using the mosquitto_pub command line tool:
mosquitto_pub -t porch/esps/set -m '{"state":"ON","color":{"r":255,"g":128,"b":64},"brightness":255,"effect":"solid","reverse":false,"mirror":false}'
- Firmware: http://github.com/forkineye/ESPixelStick
- Hardware: http://forkineye.com/ESPixelStick
- The great people at diychristmas.org and doityourselfchristmas.com for inspiration and support.
- Bill Porter for initial Renard and SoftAP support.
- Bill Porter and Grayson Lough for initial DMX support.
- Rich Danby for fixes and helping polish the front-end.
- penfold42 for fixes, brightness, gamma support, and zig-zag / grouping.
- penfold42 also maintains PWM support in their fork located here.
- Austin Hodges for effects support and MQTT cleanup.
- Matthias C. Hormann — some MQTT & effects cleanup.