Output
My garment will work with inflatables.
After many research on the design of my garment, when ı decided to final structure ı started working inflatables.
ı wanna make a system with inflatables. My input is working under stress. İn case of stress, the wearable will be inflated.
I used two dc motors; one for inflating the other for deflating.
The component list that I used for output.
component | quantity | Datasheet/website |
---|---|---|
6V small dc motor | 2 | https://www.amazon.de/Luftpumpe-DAYPOWER-LP15-06-6V-430mA/dp/B074M9JML9 |
1N4001 diode | 2 | http://www.onsemi.com/pub/Collateral/1N4001-D.PDF |
10k Ω Resistor | 2 | |
mosfet | 2 | https://www.infineon.com/dgdl/irf540n.pdf?fileId=5546d462533600a4015355e396cb199f |
Jump wire | 24 | |
Arduino uno | 1 | https://www.farnell.com/datasheets/1682209.pdf |
Arduino code;
const int analogInPin = A0; Analog input pin that the Galvanic skin sensor is attached to const int analogOutPin = 3;Analog output pin that the First DC Motor is attached to const int analogOutPinVac = 5; Analog output pin that the Second DC motor to int sensorValue = 0;value read from the pot int outputValue = 0; value output to the PWM (analog out) void setup() { initialize serial communications at 9600 bps: Serial.begin(9600); } void loop() { read the analog in value: sensorValue = analogRead(analogInPin); map it to the range of the analog out: outputValue = map(sensorValue, 0,70, 0, 255); change the analog out value: analogWrite(analogOutPin, outputValue); print the results to the Serial Monitor: Serial.print(“sensor = ”); Serial.print(sensorValue); Serial.print(“\t output = ”); Serial.println(outputValue); wait 2 milliseconds before the next loop for the analog-to-digital converter to settle after the last reading: delay(2); } |
I Found a setup on the internet to work my DC motor with MOSFET. Because in the internet is recomending to use PN2222 Transistor .
But this transistor working only 200 amper DC motors. My DC motor is using 430 amper.