Saptarshi Sadhushreya sadhuAditi
Published

Slip Stream

Slip Stream is a wearable/garment which enhances thermal comfort by circulating temperature controlled water through channels.

AdvancedFull instructions providedOver 2 days2,176
Slip Stream

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×1
Peltier Cells
×2
Heat Sink, Panel
Heat Sink, Panel
×2
12V DC Water Pump
×1
60W PCIe 12V 5A Power Supply
Digilent 60W PCIe 12V 5A Power Supply
×1
Temperature Sensor
Temperature Sensor
×1
Silicone Tube
×1
Plastic Sheets (Vacuum Storage bags/ Plastic wraps)
×1

Hand tools and fabrication machines

Plier, Cutting
Plier, Cutting
Scissor, Electrician
Scissor, Electrician
Hot glue gun (generic)
Hot glue gun (generic)
PCB Holder, Soldering Iron
PCB Holder, Soldering Iron

Story

Read more

Schematics

Slip Stream arm piece

Slip Stream arm piece being used

Code

Slip Stream

Arduino
#include <Servo.h>
 Servo servo;                  

 int angle;
 void setup() 
 { 
  servo.attach(13); //servo controls the switch of the pump and the thermoelectric module
  pinMode(7,INPUT); //connect manual pressing switch to this pin 
 } 
 
 void loop() 
 { 
int val=digitalRead(13);
if(val==1){

servo.write(180); delay(300000); //180 is the ON position....pump-coller runs for 300 seconds ie. 5 mins...customise accordinly or add potentiometer to regulate while operating
servo.write(90); delay(1000);//any angle  other than 180 is off position
}
 }

Credits

Saptarshi Sadhu

Saptarshi Sadhu

3 projects • 0 followers
shreya sadhu

shreya sadhu

0 projects • 0 followers
Aditi

Aditi

0 projects • 0 followers

Comments