Archive | FastLED

On Sound Reactive WLED

After spending a few years writing and sharing animations with the FastLED display library for addressable LED strips, I incorporated sound reactivity to WLED. This included both volume reactive routines as well as frequency reactive routines using various Fast Fourier Transform libraries.

My YouTube account has several animations:

https://www.youtube.com/user/atuline/videos

Continue Reading →
Continue Reading

My lantern collection

I have over 50 animated lanterns, which were made using tissue paper and various frames such as:

  • Bamboo
  • Grapevines
  • 10 AWG wire with brazing
  • Round reed
  • Chicken wire

They have been on exhibition at the following venues:

  • North Delta Luminary Festival
  • Renfrew Stillmoon Festival
  • Deer Lake Luminescent Art
  • Secret Lantern Society Solstice Festival
  • Maple Ridge Celebrate the Night
  • Surrey Garden Light Festival
  • Scouts Canada Watershed Fun Night

Click on images in the article to see an animated version. The animations are customizable via Wi-Fi.

Continue Reading →
Continue Reading

Addressable LED options for lanterns

There are several commercial and non-commercial options available to control LED displays. These range from small portable displays running on a dedicated microcontroller to large commercial ones that are controlled by custom applications running on a dedicated computer and multiple controllers. WLED is a non-comercial (open source) program and is the probably the best available for portable displays as it supports a wide variety of animations/colour palettes and can be controlled by your cell phone over WiFi. In order to make your own WLED displays, you will need a laptop/desktop and:

Continue Reading →
Continue Reading

WLED and FastLED

WLED is a relatively new platform for communicating with and animating LED’s without requiring a PC to drive them. As a FastLED afficionado, I’ve been developing my own code to communicate with several displays. The summer of 2019 was spent implementing an MQTT infrastructure that would support my FastLED sketches and after MUCH trial and error, I got it to work as shown here:

As a result of the challenges I faced, this effort took several months and I still didn’t accomplish my goal at the end.

Continue Reading →
Continue Reading

Coordinating Displays with ESP8266’s and MQTT

My goal:

To be able to control multiple lanterns at the same time in order to create a coordinated display.

The Reality:

The MQTT client library I use for Arduinos (pubsubclient) is ‘blocking’ in that if your connectivity to the server is not reliable, then the display sometimes stutters and possibly stops. I’ve tried some non-blocking workarounds, but it’s not 100% reliable.

In addition, although I can control these lanterns in a lab environment, the message often doesn’t make it through to one of the 10 Arduinos I’m testing with and has to be resent. Therefore, a command for them to simultaneously reboot works maybe 1 in 5 attempts across those 10 lanterns.

As a result, I think that while controlling lanterns via wifi and MQTT is pretty good, controlling them for coordinated displays is not that reliable.

Continue Reading

On Wiring up a New Project

I’ve been working on an interactive art project as a favour for a friend of mine that would allow you to push buttons, use rotary encoders, potentiometers and so on in order to control an animated light fixture elsewhere in the room.

These controls would allow you to change:

  • Brightness
  • Display mode
  • Palettes
  • Speed
  • Toggle direction
  • Toggle glitter
  • and so on. . .

To do so, I’m using an ESP8266 enabled FastLED based lantern combined with an ESP32 based control panel. They’re both MQTT enabled, and I’ll be using an Android phone as the wifi hotspot and MQTT broker.

Here’s an email I sent about my progress in wiring and initial coding for the control panel:

I finished wiring up all the pins this morning and . . .

ABSOLUTELY NOTHING WORKED. Wouldn’t even upload to the ESP32. Got out the voltmeter and started measuring:

  1. LED was wired backwards (causing it to not upload), so I removed it temporarily.
  2. Some pins didn’t support internal pullup so I had to do some research and re-wiring.
  3. Didn’t set internal pullup correctly in the code. Found and fixed.
  4. Got digital pins working with basic digitalRead().
  5. Found an ESP32 button library, so I don’t have to worry about de-bouncing.
  6. Got that working with multiple buttons.
  7. Had to rename the analog ports and got the potentiometers working. Values were backwards, but math fixed that.
  8. Had previously successfully tested a rotary encoder library, so I added the code.
  9. One rotary encoder wasn’t working. Swapped wires, was the same encoder. Pins were OK.
  10. Had a rotary encoder soldering issue (solder blob). Fixed that and got both working as well.
  11. Soldered on a new WS2812 LED. Installed FastLED and got that working once I found a compatible pin.
  12. Got some ESP32 network code. It compiled.
  13. Got my old MQTT networking code. It compiled as well.
  14. Have smushed together my wifi/MQTT code with FastLED and the various inputs.
  15. Amazingly, it all still compiled.

Next step will be to start adding MQTT publishing functionality to each of those inputs.

So far so good. This shit takes time to do though. As <other friend> well knows, it can take a LOT of time.

In summary, things typically don’t go as expected, so it can boil down to troubleshooting techniques. Divide and conquer.

Update: The next day, I had the buttons and potentiometer working just peachy. Only problem is, that my mode selector was meant for buttons and I was trying to use a rotary encoder for that. Now have to change code for both the control panel as well as the lantern to accept the values provided by the rotary encoder. Have also got the LED on the control panel to show Red when there’s no network connectivity, Orange when it’s connected, and finally Green when both wifi and MQTT are connected.

Continue Reading

IoT MQTT Panel Pro Device Prefix

As mentioned in my ‘Getting Started’ post, I create separate ‘devices’ for my different Arduino sketches, such as mqtt-LED, mqtt-fire2012xy, mqtt-mesh, and so on. In addition, I may have more than 1 of each type of lantern displaying at the same time. To do so, I will serialize each lantern (it’s in the code) and using a combo box widget, I can then select one or ALL of each device type and publish that to the broker, which will then get picked up by the subscribing device. I’ll then use another widget to send hue, brightness to other information to the selected devices.

In order to support these multiple device types (aka sketches), I’ll add a device prefix to the topic.

For a fire2012 lantern, the published topic can look like this:

  • fire/lantern
  • fire/hue

Continue Reading →

Continue Reading

Some ESP8266 and MQTT Examples

Our first example was outlined in “Getting Started withi ESP8266 and MQTT“. This first example uses a sketch called mqtt-LED-synchronous.ino to blink the internal LED. It waits for the wifi initialization, followed by the MQTT initialization to complete before the continuous loop can run.

The second example is called mqtt-LED and appears similar to the first examples, however while the networking and MQTT code are initializing, the loop is running. In addition, if we temporarily lose MQTT connectivity, the sketch will continue MQTT transmission/reception once communications are re-established.

The third example is called mqtt-JSON and adds JSON data exchange to the previous example, allowing for more detailed information to be exchanged between the control panel and the subscribing device.

mqtt-fire is our first example using the FastLED display library. Controls in this example are a combo box, which is used to select from one or more fire enabled lanterns, while the remaining slider controls support brightness, hue, speed, cooling and sparking.

Continue Reading