Colourful RGB Mason Jar Night Lamp

by TechMartian in Craft > Mason Jars

1425 Views, 26 Favorites, 0 Comments

Colourful RGB Mason Jar Night Lamp

IMG_2501.jpg
IMG_2505.jpg
IMG_2503.jpg

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

IMG_20170827_132701.jpg
IMG_20170827_133201.jpg
IMG_20170827_133212.jpg

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

IMG_2406.jpg

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

IMG_2551.jpg
IMG_2553.jpg

* Solder a 100Ω resistor to all the pins apart from the longest pin -- that is the ground pin.

Connections

IMG_2507.jpg
IMG_2510.jpg
IMG_2509.jpg

Follow the table below for the connections between the RGB LED and the Arduino.

RGB LED Description Arduino Pin
1Red4
2GNDGND
3Green5
4Blue6

Code

Screen Shot 2017-08-28 at 11.05.20 PM.png

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!

IMG_2504.jpg
IMG_2506.jpg
IMG_2502.jpg

Enjoy!