5. E-textiles¶
Electro ART¶
Video Installtion from Sigurrdur Gudjònsson at Berg Galerie in Reykjavik
Research¶
I was falling in LOVE with this knitting book:
The book I found on the Webpage from Kokobant, it's really a rabbit hole for E-Textiles and i would love to spend some more time on it. Kobakant.at
Work from Miranda Marcus from the SIM Residency in Januray 2022
Ideas¶
it’s toooo loud! writing in LED when it s gets to high noises
glooves!: holy moly gloves- you touch both hands and it s get light on the back
fight the power - you make a FAUST and you have lights on
cloves with the cap, you close the cap then you get light on the cloves— perfect on the bike in winter…
My Examples¶
I knitted to dirty examples. A analog and a digital one.
How to read the plan¶
Resistors /Colors /Power¶
Arduino¶
Arduino didn't work/connect with my computer i couldn't check it. I was looking this tutorial again, and try to understand. and i found a german webside with beginner stuff with Arduino: distrelec
CODE FOR DIGITAL SENSOR¶
int digital_sensor_pin = 8; //change the pin, where the sensor is connected int digital_sensor_value = 0; //variable in which we save the sensor voltage
void setup() { // put your setup code here, to run once:
//pinMode(digital_sensor_pin, INPUT); pinMode(digital_sensor_pin, INPUT); //define the pin as INPUT PULLUP Serial.begin(9600); //open communication
}
void loop() { // put your main code here, to run repeatedly: // digitalRead(pin); digital_sensor_value = digitalRead(digital_sensor_pin); // read the sensor
Serial.print("the status of the sensor is: "); Serial.println(digital_sensor_value); //print the value delay(100);
}
CODE FOR ANALOG SENSOR¶
int analog_sensor_pin = A0; //change the pin, where the sensor is connected? int analog_sensor_value = 0;
void setup() { // put your setup code here, to run once: pinMode(analog_sensor_pin, INPUT); Serial.begin(9600);
}
void loop() { // put your main code here, to run repeatedly: analog_sensor_value = analogRead(analog_sensor_pin); //read the Voltage of the pin sensor
Serial.println(analog_sensor_value); // print the value on the Serial monitor delay(100);
}
I can find the Tutorial from Emma here: - Emma Pareshci's presentation
RABBIT HOLE¶
I got lost in a rabbit hole. My brain is oveloaded. The speed we have to learn all new things, is not compatible with my brain. It's feel like fast food for the brrain. I don't like fast food, it's make my brain sticky. I feel overhelmd and a depression start. I don't want to sit in front of my computer and tears rolling down. I have to find a soulution, I call this SOULution - because my soul have to find a way , how to handle this system. How I can go deeper in the themes in shorter time? I start with meditation, I want to think clear & not fast. I think about braeak up with the scholarship, but break up isn't cool. My brain freeze under pressure, HOW i can find a flow which works for me?