Colourful RGB Mason Jar Night Lamp
by TechMartian in Craft > Mason Jars
1456 Views, 26 Favorites, 0 Comments
Colourful RGB Mason Jar Night Lamp
This is a beautiful and elegant looking night lamp made with a frosted mason jar. It also uses an RGB LED so it can produce multiple colours. In fact, it can cycle through all the colours in the visual spectrum.
Although it can function as a standalone battery powered LED night shade, I decided to give it an added functionality of programming an Arduino to make the RGB LED cycle through all 255 values of colour for each LED producing beautiful visual effects!
Remove Adhesive
Leave it on a tub of hot water for about 5 minutes then scrub off the adhesive with a kitchen scrubber. Then, leave it to air dry before frosting.
Frost Glass
Apply 2 generous but even coats of semi-transparent frosting pain around the surface. Make sure to hold the can at 90 degrees at all times to get the best results.
Solder
* Solder a 100Ω resistor to all the pins apart from the longest pin -- that is the ground pin.
Connections
Follow the table below for the connections between the RGB LED and the Arduino.
RGB LED | Description | Arduino Pin |
---|---|---|
1 | Red | 4 |
2 | GND | GND |
3 | Green | 5 |
4 | Blue | 6 |
Code
This code will make the RGB LED cycle through all the different colours possible in the visual spectrum.
const int red = 5;
const int green = 6; const int blue = 9;void setup() { pinMode (red, OUTPUT); pinMode (green, OUTPUT); pinMode (blue, OUTPUT); }void loop() { for (int i = 0; i < 255; i++){ for (int j = 0; j<255; j++){ for (int k = 0; k<255; k++){ analogWrite (red, i); analogWrite (blue, j); analogWrite (green, k); } } } }
Enjoy!
Enjoy!