GREEN LANTERN With Reed Switch

by Arnov Sharma in Circuits > LEDs

1105 Views, 5 Favorites, 0 Comments

GREEN LANTERN With Reed Switch

Green Lantern's Lantern with REED SWITCH and ATTINY85
Image22.jpg
18 (19).gif
21 (13).gif

Hey everyone, what's up?

Now here's something very cool: a completely handmade green lantern lantern.

It makes use of an Attiny85 connected to 20 WS2812 LEDs whose color is changed by a reed switch; when a magnetic field is applied to the reed switch, the color of the LEDs changes.

The sole objective of this project is to test an idea: what would happen if we placed a magnet inside a 3D-printed ring and used a reed switch to change the color of the LEDs when the reed switch detected a magnetic field?

This Instructables is about the whole building process of this project, so let's get started.

Supplies

Following were the materials used in this built-

  • CUSTOM PCBS
  • REED SWITCH
  • ATtiny85
  • IP5303
  • 1uF Capacitors
  • WS2812 LEDs
  • smd lithium cell holder
  • 18650 cell

Reed Switch

09 (27).gif
MAGNETIC-REED-SWITCH-12MM-SDL552232930-1-2e66c.jpg

A reed switch is an electrical switch that is operated by a magnetic field. It is made up of two ferromagnetic, elongated, and flattened contact blades that measure 1 mm and are hermetically sealed inside a glass tube.

The blades are separated by a small gap, typically between 0.5 and 1 mm, and are made of a ferromagnetic material that can be magnetized.

When a magnet is brought close to the reed switch, the magnetic field causes the blades to attract each other, closing the electrical circuit. When the magnet is removed, the blades return to their original position, opening the circuit again. Reed switches are commonly used in applications where the switch needs to be activated without physical contact, such as in burglar alarms, door and window sensors, and in automotive and industrial applications.

In this project, a reed switch is being used to detect the magnet inside the ring of the green lantern. This will cause the reed switch to be activated, changing the color of the RGB LEDs.

PCB Design

sch_page-0001 (2).jpg
Capture.JPG

PCB design consists of three main components: the Attiny85 setup, the WS2812 setup, and the IP5306, which powers this whole setup.

LEDs are all connected in parallel, Din of the first LED is connected to D0 of Attiny, Dout of the first LED is connected with Din of the second LED; Dout of the second LED is connected with Din of the third LED; and this arrangement follows up to the 20th LED.

Each LED has its own capacitor connected to VCC and GND, as stated in the datasheet.

The IP5306 IC is present in order to power the whole system with a single lithium cell, and the voltage of this lithium cell gets boosted up to a stable 5V in order to power the LEDs and microcontroller.

PCBWAY

01 (21).gif
02 (25).gif

After I completed the PCB, I generated the Gerber data, which was then sent to PCBWAY for samples. An order was placed for the PCBs with green solder mask and white silkscreen, which look pretty cool in general.

Also, as green is the colour of the green lantern, ordering Boards with green solder mask makes sense.

I received PCBs within a week, and they were excellent, as expected.

I love the quality of PCBs made by PCBWAY. There are other manufacturers available, but their service is always on another level.

Check out PCBWay for getting great PCB service at less cost.

PCB ASSEMBLY

03 (23).gif
04 (24).gif
05 (24).gif
07 (24).gif
08 (25).gif
  • The first step is to apply solder paste to each component pad.
  • We then used an ESD tweezer to carefully pick and place all the SMD components in their assigned places one by one.
  • Next, we carefully lifted the whole circuit board and place it on my DIY Mini Hotplate which is also homemade just like this project.
  • After a little time, when the hotplate reaches the temperature where the solder paste is melting, all of the components will be soldered using this hot reflow process.
  • We then placed all the remaining THT components, and the board is now completely assembled.


Programming Attiny85

06 (25).gif

With projects like these, an Attiny85 comes in incredibly handy, and programming it is really simple.

  • First, we need an Arduino, which we upload with Arduino as ISP sketch to turn it into an IN-SERIAL PROGRAMMER.
  • To prevent the atmega from resetting, a 1uF capacitor is put between the Arduino's reset pin and ground pin.
  • We connect the Attiny85's RST, MISO MOSI, SCK, GND, and VCC pins with the Arduino's D10, D11, D12, and D13 pins along with GND and VCC.
  • The next step is to add Attiny85 Core files to the Arduino IDE by going the github website linked below and following the installation instructions.

https://github.com/SpenceKonde/ATTinyCore

  • We open the sketch, navigate to the tool menu, and choose the Attiny85 board (no Bootloader)

  • Then, after switching the programmer to Arduino as the ISP, we select the option to burn the bootloader. This will take 10 seconds, after which you will see the message "Done Burning Bootloader."
  • The sketch will then be flashed into the attiny85 if you go to the sketch menu and select "upload using programmer" after that.
  • To make things even simpler, I created an Arduino ISP Programmer, whose function it is to use the same method to flash Attiny or other AVR chips.

you can read more about this programmer here-

https://www.instructables.com/Multiple-ATtiny8513A-Programmer/

As for the Attiny85, it's been programmed and can be used in the project.

CODE

Here's the code, and it's a simple one, This is the Neopixel Button Cycler sketch, which uses Adafruit's Neopixel library.

#include <Adafruit_NeoPixel.h>

#define BUTTON_PIN 4 // Digital IO pin connected to the button. This will be
// driven with a pull-up resistor so the switch should
// pull the pin to ground momentarily. On a high -> low
// transition the button press logic will execute.

#define PIXEL_PIN 0 // Digital IO pin connected to the NeoPixels.

#define PIXEL_COUNT 20

// Parameter 1 = number of pixels in strip, neopixel stick has 8
// Parameter 2 = pin number (most are valid)
// Parameter 3 = pixel type flags, add together as needed:
// NEO_RGB Pixels are wired for RGB bitstream
// NEO_GRB Pixels are wired for GRB bitstream, correct for neopixel stick
// NEO_KHZ400 400 KHz bitstream (e.g. FLORA pixels)
// NEO_KHZ800 800 KHz bitstream (e.g. High Density LED strip), correct for neopixel stick
Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIXEL_COUNT, PIXEL_PIN, NEO_GRB + NEO_KHZ800);

bool oldState = HIGH;
int showType = 0;

void setup() {
pinMode(BUTTON_PIN, INPUT_PULLUP);
strip.begin();
strip.show(); // Initialize all pixels to 'off'
}

void loop() {
// Get current button state.
bool newState = digitalRead(BUTTON_PIN);

// Check if state changed from high to low (button press).
if (newState == LOW && oldState == HIGH) {
// Short delay to debounce button.
delay(20);
// Check if button is still low after debounce.
newState = digitalRead(BUTTON_PIN);
if (newState == LOW) {
showType++;
if (showType > 9)
showType=0;
startShow(showType);
}
}

// Set the last button state to the old state.
oldState = newState;
}

void startShow(int i) {
switch(i){
case 0: colorWipe(strip.Color(0, 0, 0), 50); // Black/off
break;
case 1: colorWipe(strip.Color(255, 0, 0), 50); // Red
break;
case 2: colorWipe(strip.Color(0, 255, 0), 50); // Green
break;
case 3: colorWipe(strip.Color(0, 0, 255), 50); // Blue
break;
case 4: theaterChase(strip.Color(127, 127, 127), 50); // White
break;
case 5: theaterChase(strip.Color(127, 0, 0), 50); // Red
break;
case 6: theaterChase(strip.Color( 0, 0, 127), 50); // Blue
break;
case 7: rainbow(20);
break;
case 8: rainbowCycle(20);
break;
case 9: theaterChaseRainbow(50);
break;
}
}

// Fill the dots one after the other with a color
void colorWipe(uint32_t c, uint8_t wait) {
for(uint16_t i=0; i<strip.numPixels(); i++) {
strip.setPixelColor(i, c);
strip.show();
delay(wait);
}
}

void rainbow(uint8_t wait) {
uint16_t i, j;

for(j=0; j<256; j++) {
for(i=0; i<strip.numPixels(); i++) {
strip.setPixelColor(i, Wheel((i+j) & 255));
}
strip.show();
delay(wait);
}
}

// Slightly different, this makes the rainbow equally distributed throughout
void rainbowCycle(uint8_t wait) {
uint16_t i, j;

for(j=0; j<256*5; j++) { // 5 cycles of all colors on wheel
for(i=0; i< strip.numPixels(); i++) {
strip.setPixelColor(i, Wheel(((i * 256 / strip.numPixels()) + j) & 255));
}
strip.show();
delay(wait);
}
}

//Theatre-style crawling lights.
void theaterChase(uint32_t c, uint8_t wait) {
for (int j=0; j<10; j++) { //do 10 cycles of chasing
for (int q=0; q < 3; q++) {
for (int i=0; i < strip.numPixels(); i=i+3) {
strip.setPixelColor(i+q, c); //turn every third pixel on
}
strip.show();

delay(wait);

for (int i=0; i < strip.numPixels(); i=i+3) {
strip.setPixelColor(i+q, 0); //turn every third pixel off
}
}
}
}

//Theatre-style crawling lights with rainbow effect
void theaterChaseRainbow(uint8_t wait) {
for (int j=0; j < 256; j++) { // cycle all 256 colors in the wheel
for (int q=0; q < 3; q++) {
for (int i=0; i < strip.numPixels(); i=i+3) {
strip.setPixelColor(i+q, Wheel( (i+j) % 255)); //turn every third pixel on
}
strip.show();

delay(wait);

for (int i=0; i < strip.numPixels(); i=i+3) {
strip.setPixelColor(i+q, 0); //turn every third pixel off
}
}
}
}

// Input a value 0 to 255 to get a color value.
// The colours are a transition r - g - b - back to r.
uint32_t Wheel(byte WheelPos) {
WheelPos = 255 - WheelPos;
if(WheelPos < 85) {
return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
}
if(WheelPos < 170) {
WheelPos -= 85;
return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
}
WheelPos -= 170;
return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
}


This sketch toggles or changes the RGB LED color when a button press is sensed, REED switch is basically a switch, so we use it to change the RGB LED color.

I/O pins and RGB LED numbers were changed to D0 and 20 for use with the ATtiny85 and 20 LEDs.

Power Source

11 (25).gif
12 (24).gif

A 3.7V 2200-mAh lithium-ion cell is used in this system as its primary power source. We place the cell in its SMD cell holder and test the setup's output voltage, which should be approximately 5V.

Final Assembly

13 (25).gif
14 (28).gif
15 (24).gif
16 (25).gif
17 (21).gif
  • Final assembly starts with first adding the Attiny85 in its DIP Socket
  • Next, we place the 3D Printed Handle with the PCB using two M2 Screws
  • Assembly is completed.

RESULT

Green Lantern's Lantern with REED SWITCH and ATTINY85
21 (13).gif

Here is the end result of this build: a functioning Green Lantern lantern made solely of PCBs with a clever reed switch-based system that turns on RGB LEDs through the lantern's ring.

Because this experiment was successful, we can apply this technique to create a larger lighting setup and use the magnetic ring to activate it using magnets rather than magic.

This is it for today folks, leave a comment if you need help regarding this project.

Special thanks to PCBWAY for providing components that I've used in this project, check them out for getting all sorts of PCB or PCBA-related services for less cost.

Thanks, and I will be back with a new project soon.