Concept
Planning an unconventional switch in which we had to open and close a circuit like a switch without using our hands seemed extremely challenging. However, after some planning, and examining the material available in the IM lab, I set myself the goal of creating two bracelets that upon touching they would “close” the circuit. I have always been fascinated by jewelry, so I thought this would be a cute way of integrating the concept of accessories with the Arduino interactivity.
Circuit Illustration
The part I struggled the most was finding a way of connecting bracelets to the breadboard and for them to react once they touched each other in response to the code in the digitalRead. After a long time of trial and error, I managed to make the LED light respond to the touch between the bracelets by inserting the jumper wires where the button would have been as we learned in class.

For the final result, every time the bracelets touched, by pressing my wrists together, the LED light would turn off. And when they were separated, the light would turn on.
Arduino code
void setup() {
// put your setup code here, to run once:
pinMode(13,OUTPUT);
pinMode(A2,INPUT_PULLUP);
}
void loop() {
int buttonState = digitalRead(A2);
if(buttonState == LOW){ // button pressed
digitalWrite(13, HIGH);
} else {
digitalWrite(13, LOW);
}
}
GitHub PermaLink
Challenges and Further Improvements
One of the greatest challenges I faced happened while I tried to find the way of arranging the jumper wires and the wires connected to the copper bracelets so they would react on the LED light once they touched.
For my next project, I would like to make something more creative, and add some more responses such as making the lights blink or react to the movement of the wrists too.

