Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
fabricademy2017:students:julie.taris:class9-e-textiles-wearables2 [2018/06/25 20:42]
julie_taris
fabricademy2017:students:julie.taris:class9-e-textiles-wearables2 [2018/06/25 20:58]
julie_taris
Line 165: Line 165:
 {{:​fabricademy2017:​students:​julie.taris:​julie-taris-ewearable2-1mmaplicator_25_.jpg?​200x200|}} {{:​fabricademy2017:​students:​julie.taris:​julie-taris-ewearable2-1mmaplicator_25_.jpg?​200x200|}}
 {{:​fabricademy2017:​students:​julie.taris:​julie-taris-ewearable2-1mmaplicator_26_.jpg?​200x200|}} {{:​fabricademy2017:​students:​julie.taris:​julie-taris-ewearable2-1mmaplicator_26_.jpg?​200x200|}}
 +
 +==film applicator for silicone sensor molding==
 + find the romain Di Vozzo'​s files on https://​www.youmagine.com/​designs/​film-applicator-for-silicone-sensor-molding
 +The final sensor was done with this applicator, the conductive fabric is best quality with silicone ecoflex the sensor is very wrinkleable,​ stretchable and flexible.
 +without the machine vacuum you can see some dried air bubbles on both sides of the sensor.
 +
 +{{:​fabricademy2017:​students:​julie.taris:​julie-taris-etextiles-wearables2-hybridsensor_4_.jpg?​200x200|}}
 +
 +{{vimeo>​255816356?​medium}}
 +
 \\  \\ 
 -------- --------
Line 171: Line 181:
  
 [http://​www.instructables.com/​id/​Connecting-a-textile-analog-sensor-to-Arduino/​|Connecting a Textile Analog Sensor to Arduino]] [http://​www.instructables.com/​id/​Connecting-a-textile-analog-sensor-to-Arduino/​|Connecting a Textile Analog Sensor to Arduino]]
 +
 +<​code>​
 +int softPot = 0; // this line selects the input pin a0 for the sensor
 +int ledPin = 13; // this line selects the pin 13 for the LED output
 +int tempPot = 0; // variable to store the value coming from the sensor
 +
 +void setup() {
 +// this line declares the ledPin as an OUTPUT:
 +pinMode(ledPin,​ OUTPUT);
 +}
 +
 +void loop() {
 +// read the value from the sensor and store the value in the variable tempPot
 +tempPot = analogRead(softPot);​
 +// it turns the LED on
 +digitalWrite(ledPin,​ HIGH);
 +// stop the program for milliseconds:​
 +delay(tempPot);​
 +// turn the LED off:
 +digitalWrite(ledPin,​ LOW);
 +// stop the program for for milliseconds:​
 +delay(tempPot);​
 +}
 +</​code>​
  
 {{vimeo>​245700846?​medium}} {{vimeo>​245700846?​medium}}
Line 179: Line 213:
  
  
-{{:​fabricademy2017:​students:​julie.taris:​julie-taris-etextiles-wearables2-hybridsensor_4_.jpg?​200x200|}}