Overview

The goal of this project is to build a dynamic backlight, also known as an ‘ambilight’, for my PC monitor. An ambilight changes colors based on the content onscreen, extending your monitor to the wall behind it. By reducing the contrast between the monitor and the background it can also help with eye strain.

There are some commercial versions of this product, but I wanted to see if I could make one myself with WS2812B addressable LEDs (also known as NeoPixels) and an Arduino.

This was a fun project and I’m really happy with the end result. If you’d like to build your own, I would suggest reading through all of the posts before starting. I’ve also included direct links to the software downloads and a parts list below that you may find useful.

Posts

Addendums

Software Download Links

I wrote my own version of the Adalight code which works with FastLED and WS2812B LEDs (and, in theory, with all other FastLED supported LED types). The PC software I’m using for screen-grabbing is Patrick Siegler’s fork of Lightpack’s Prismatik, which supports the Adalight protocol out of the box. You can download both of these from their respective GitHub repositories:

Adalight-FastLED Download

Prismatik Download

Settings

My settings have changed throughout this project, so you may find that they vary between the different posts. Here are the current settings for my setup:

--Data Rates:
Baud Rate: 250000
Grab Rate: 14 ms
Framerate: ~60 fps

--Calibration (Standard / Eyeball):
CoefRed=1
CoefGreen=0.67
CoefBlue=0.33

--Calibration (Camera / Color-Accurate):
CoefRed=1
CoefGreen=0.78
CoefBlue=0.23

--Appearance Settings:
Over-brightening: 0
Scene luminosity threshold: 3 (minimum luminosity level)
Overall brightness: 100%
Gamma Correction: 2.0

You can find more information on each of these settings in the framerate and color correction posts above.

These settings are current as of: October 21st, 2019.

Parts List:

For full disclosure, note that some of these are Amazon affiliate links that help fund the content on this site. Thank you for your support!

LED Strip
PCB
Connections

As of October 21st 2019, I’ve changed monitors and no longer have this ambilight set up. It worked great while I had it, and I may end up building an improved version some day.

If you’re looking to build your own ambilight, I do not recommend using WS2812B LEDs (“NeoPixels”) with an Arduino because of the issues with interrupts causing dropped frames. Read the posts on improving framerate and calculating the framerate limits for more information. Instead, I recommend using APA102 LEDs or another chipset that won’t disable interrupts. All of the other information in this series stays the same, you would just use two wires for the LED data instead of one.


1 Comment

DIY Ambilight – Tom Archer · February 1, 2020 at 8:13 am

[…] so that it’d work with my Mote device, but before I did I stumbled across this series of blog posts which create an Ambilight using WS2812B […]

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Would you like to know more?