9. Wearables¶
Research¶
Wearable technology combines electronics, materials science, and design to create functional items that can be worn comfortably on the body while providing technological utility. This includes smart textiles, embedded sensors, conductive materials, and energy solutions.
Material and Design considerations¶
-
Durability: It must withstand stretching, bending and daily wear
-
Washability: Electronics need protection from water and detergent damage
-
Comfort: Lightweight, breathable fabric that does not irritate skin
-
Sustainability: Use of biodegradable materials, recycled textiles and low-energy production methods.
Sustainability approaches¶
-
Material innovation such as organic cotton, bamboo, biodegradable polymers.
-
Energy efficiency- harvesting body heat or motion to power devices
-
Lifecycle design- easy disassembly for recycling or repair.
Examples¶
1) Smart fitness bands measuring heart rate and activity.
2) E-textile shirts tracking posture or respiration
3) Smart shoes
4) Temperature regulating fabric.
## Reference and Inspiration
Cindy Hsin-Liu Kao work helps in bridging technology,textile, wearability and human-centered design
Asha Peta Thompson creates smart textile fabrics by embedding sensors. One of her works is the e-uniforms for infantry.
In Kenya, Roy Allela invented smart gloves that convert hand signs to audio speech.
Tools and materials¶
- Two 3v batteries
- Transistors
- LEDs
- Jumper wires
- Resistors
- Arduino IDE
- ESP 32C3
- Touch sensor
- Vibration sensor
- XIAO ESP32C3
- Phone
- LEDs
- Copper tape
- Connecting wires
- Insulating tape
- Double sided tape
- solderin iron and gun
- OTG Cable
Process and workflow¶
My intention for this week is to create a bracelet made from sisal material with three small LED lights clusters placed evenly around it. The LEDs should light up when I’m walking or moving, and remain off when I'm still. The bracelet will be lightweight, wearable, and safe.
Inside the bracelet, I plan to include a vibration sensor and connected to the LEDs and a tiny battery. When the sensor detects movement such as walking, the circuit will activate and the LEDs will turn on. When movement stops, the lights should fade or turn off.
I then gathered all the eletronic components to be used and made a conection:
I used copper tape to assemble all the electronics together and sealing the wires with a black tape.
I attached the assembled electronics and the LED were functioning as needed
I mounted them on my sisal bracelet. Whenever it comes in contact with the skin, it sends signal and the LED bulbs light.
I needed to make another swatch that now I could be able to move freely.
Steps¶
-
Cut copper tape into strips and remove sticker from one side to distinguish the +ve and -ve terminals
-
Solder the LEDs to the copper tape
- Connect the resistors to the -ve terminal
- Use black connecting wires to link to -ve terminal and colored connecting wires to the +ve
-
Test if the LEDs work.
-
Mount the LEDs +ve terminal to the ESP32C3 pins.
Used this code to as a test
'''
define LED1 6¶
define LED2 7¶
define LED3 8¶
define LED4 9¶
void setup() { pinMode(LED1, OUTPUT); pinMode(LED2, OUTPUT); pinMode(LED3, OUTPUT); pinMode(LED4, OUTPUT); }
void loop() {
// One by one digitalWrite(LED1, HIGH); delay(300); digitalWrite(LED1, LOW); digitalWrite(LED2, HIGH); delay(300); digitalWrite(LED2, LOW); digitalWrite(LED3, HIGH); delay(300); digitalWrite(LED3, LOW); digitalWrite(LED4, HIGH); delay(300); digitalWrite(LED4, LOW);
delay(500);
// All ON digitalWrite(LED1, HIGH); digitalWrite(LED2, HIGH); digitalWrite(LED3, HIGH); digitalWrite(LED4, HIGH); delay(500);
// All OFF digitalWrite(LED1, LOW); digitalWrite(LED2, LOW); digitalWrite(LED3, LOW); digitalWrite(LED4, LOW); delay(500); } '''
I noticed the pins are not as they should be....like pin 5 in code is pin3 on board. I wanted the pins to blink one at a go in a sequential manner. This is was unique with the microcontroller I was using. Instead, the ESP32 Pin is integrated in this manner.
| Board Label | GPIO (use in code) |
|---|---|
| D0 | 2 |
| D1 | 3 |
| D2 | 4 |
| D3 | 5 |
| D4 | 6 |
| D5 | 7 |
| D6 | 21 |
| D7 | 20 |
| D8 | 8 |
| D9 | 9 |
| D10 | 10 |
CODE¶
'''
define LED1 21¶
define LED2 20¶
define LED3 8¶
define LED4 9¶
int delayTime = 120;
void setup() { pinMode(LED1, OUTPUT); pinMode(LED2, OUTPUT); pinMode(LED3, OUTPUT); pinMode(LED4, OUTPUT); }
void loop() {
// Forward chase digitalWrite(LED1, HIGH); delay(delayTime); digitalWrite(LED1, LOW); digitalWrite(LED2, HIGH); delay(delayTime); digitalWrite(LED2, LOW); digitalWrite(LED3, HIGH); delay(delayTime); digitalWrite(LED3, LOW); digitalWrite(LED4, HIGH); delay(delayTime); digitalWrite(LED4, LOW);
// Reverse chase digitalWrite(LED4, HIGH); delay(delayTime); digitalWrite(LED4, LOW); digitalWrite(LED3, HIGH); delay(delayTime); digitalWrite(LED3, LOW); digitalWrite(LED2, HIGH); delay(delayTime); digitalWrite(LED2, LOW); digitalWrite(LED1, HIGH); delay(delayTime); digitalWrite(LED1, LOW); } '''
I assembled the electronics together on my sisal bracelet
Mounting the sensors using glue gun
Assembled the LEDs using double sided tape
Connected the LEDs with the microcontroller
I then wore the bracelet, by tying the LEDs on my arm using cable ties
Then I powered using my phone making it easier for me to walk around


















