Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tigoe/lightprojects
A collection of lighting projects
https://github.com/tigoe/lightprojects
Last synced: 19 days ago
JSON representation
A collection of lighting projects
- Host: GitHub
- URL: https://github.com/tigoe/lightprojects
- Owner: tigoe
- License: mit
- Created: 2019-01-26T11:51:27.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T12:36:24.000Z (4 months ago)
- Last Synced: 2024-07-08T15:40:51.255Z (4 months ago)
- Language: C++
- Homepage: http://tigoe.github.io/LightProjects
- Size: 30.1 MB
- Stars: 29
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Light Projects
A collection of lighting projects controlled by microcontrollers.
## Low-voltage DC Lamps
Low-voltage [LED Lamps](led-lamps) are easy to control from a microcontroller when you know what properties you need to be aware of. In fact, there are so many low-voltage sources on the market now that you can manage most indoor lighting needs without needing to control high-voltage AC sources.
## Recommended Parts
This [list of parts](inventory) is not comprehensive, it's just a list of some of the parts I've used in building this repository.
You may find it useful to combine the examples in this repository with some of my [Arduino general examples](https://github.com/tigoe/ArduinoGeneralExamples) or [Sensor examples](https://github.com/tigoe/SensorExamples) to add interactive conntrol over your light projects.
## LED Strip Control
Single-channel and multi-channel [LED strips](led-strips) are very popular these days, and pretty easy to control with a microcontroller and a few transistors. You can find LED strips in a variety of combinations:
* Red/Green/Blue (RGB)
* Red/Green/Blue/White (RGBW). These come in cool white, warm white, and natural white variations.
* Tunable White. These come in a variety of styles: Warm/cool white, Warm/cool/natural white, and White/white/amber.## Addressable LED Control
There are a number of [addressable LED components](addressable-leds) on the market now, and they come in a variety of form factors. Covered here are a couple of the most popular, the WS28xx/SK68xx LEDs, and the APA102C LEDs. Adafruit calls their products that use these LEDs NeoPixels and DotStars, respectively. SparkFun calls their APA102C line Lumenati. Whatever you call them, they're relatively easy to use, and there are many good tools for controlling them. Addressable strips can be found in the many of the same variations as non-addressable strips, including RGB, RGBW, RGBAW, and WWA.The examples below are written mostly using Adafruit's NeoPixel and DotStar libraries. Since they have mostly the same API, you can convert any of the sketches from one protocol to the other with minimal changes.
### Examples:
* LED Test - turns on each channel of each LED individually, to make sure they all work. [APA102xTester](https://github.com/tigoe/LightProjects/tree/main/APA102x/APA102xTester) and [WS281xTester](https://github.com/tigoe/LightProjects/tree/main/WS281x/WS281xTester)
* Load test - turns on all the LEDs in a strip cumulatively so you can test if your power supply will power them all. [APA102xLoadTester](https://github.com/tigoe/LightProjects/tree/main/APA102x/APA102xLoadTester) and [WS281xLoadTester](https://github.com/tigoe/LightProjects/tree/main/WS281x/WS281xLoadTester)
* Turns on a single color. [WS281xOneColor](https://github.com/tigoe/LightProjects/tree/main/WS281x/WS281xOneColor)## Fading
The relationship between perceived brightness and the power controlling a light source is non-linear. In otherwise, if you fade an LED source in a straight line, it won't appear to you to be fading evenly in time. Depending on the effect you're looking for, you might want a light source to start fading slowly and then speed up, or slow down at the end of its fade. It helps to [have methods for a few different fade curves](fading) available.### Examples
* [SimpleFade](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/SimpleFade)
* [SineFade](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/SineFade)
* [XSquaredFade](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/XSquaredFade)
* [ExponentialFade](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/ExponentialFade)
* [CIE1931Fade](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/CIE1931Fade)
* [CIE1931FadeWithKalmanInput](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/CIE1931FadeWithKalmanInput)
* [CIE1931FadeWithInput](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/CIE1931FadeWithInput)
* [SimpleFadeWithInput](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/SimpleFadeWithInput)
* [SineFadeWithInput](https://github.com/tigoe/LightProjects/tree/main/FadeCurves/SineFadeWithInput)## Color and Color Temperature Fading
Whether you're working with tunable white lighting sources or color sources, it's useful to understand a few things about
[Color Spaces and Color Temperature](color-spaces-color-temp) in order to get the most our of your sources.### Color Space Examples
Examples:
* RGB fade. Treats the whole RGB space as a single value and fades all LEDs one point at a time. [APA102xRGBFade](https://github.com/tigoe/LightProjects/tree/main/APA102x/APA102xRGBFade)
* RGB Fade 002. Fades red, green, and blue of all LEDs one point at a time. [APA102xRGBFade002](https://github.com/tigoe/LightProjects/tree/main/APA102x/APA102xRGBFade002)
* HSV Tester. Fades hue through the whole hue color wheel on all LEDs, while keeping saturation and intensity constant. [APA102x_HSV_Tester](https://github.com/tigoe/LightProjects/tree/main/APA102x/APA102x_HSV_Tester) and [WS281x_HSV_Tester](https://github.com/tigoe/LightProjects/tree/main/WS281x/WS281x_HSV_Tester)
* A digital candle effect made by varying the hue of LEDs from red to orange. [APA102xCandle](https://github.com/tigoe/LightProjects/tree/main/Candles/APA102xCandle)### Tunable White (Color Temperature) Examples
* Color temperature fade. Fades a strip of tunable white LEDs (non-addressable) from warm to cool. [ColorTempFade](https://github.com/tigoe/LightProjects/tree/main/ColorTempFade/)
The examples below use the ColorConverter library to control a WWA strip by calculating relative mix of warm, cool, and amber as hue. Intensity can then be controlled independently of color temperature.
Examples:
* [WS281x_Mixer](https://github.com/tigoe/LightProjects/tree/main/WS281x/WWA_WS281x_Mixer)
* [WS281x_AdvancedMixer](https://github.com/tigoe/LightProjects/tree/main/WS281x/WWA_WS281x_AdvancedMixer)### Lighting Control Systems
* [Philips Hue repository](https://github.com/tigoe/hue-control)
* [DMX-512 and streaming ACN respository](https://tigoe.github.io/DMX-Examples/)### Light Sensing
* [Sensor Datalogging](https://github.com/tigoe/LightProjects/tree/main/LightSensorProjects/)
* [Arduino Light Sensor Examples](https://github.com/tigoe/SensorExamples/tree/main/LightSensors)### Pattern Making in Code
Sometimes you need to make patterns for lighting fixtures. Here are [some examples](patternMakers).
### Projects
[Rotary telephone dimmer for Philips Hue systems](telephone-dimmer)
[Color temperature control of Philips Hue systems with light sensors](sky-lights)