Sophia Amelia Eickhoff: Difference between revisions

From Medien Wiki
No edit summary
No edit summary
 
(13 intermediate revisions by the same user not shown)
Line 3: Line 3:
[[File:Graaaphics.png|600px]]
[[File:Graaaphics.png|600px]]


For my project under the Term ''Observe Experiment Connect'' I want to design a device that  
 
helps me to better understand and perceive  
For my project under the Term ''Observe Experiment Connect'' I build a device that  
my environment. For this purpose, sensors  
helps me to understand and perceive  
are sewn in which will collect specific values  
my environment better. For this purpose, sensors (light, gas, temperature)
are sewn into a WEARABLE which will collect specific values  
from different circumstances. I measure my  
from different circumstances. I measure my  
own electrical currents to observe whether  
own electrical currents to observe whether  
different circumstances have an influence on  
different circumstances have an influence on  
my body. I want to compare the data to another and when a intersection occurs, it will be shown.
my body. when a intersection of the measured data occurs, it will be experienced (vibration).
 


[[File:Armband.JPG|300px]][[File:Backpack.JPG|300px]]
[[File:Armband.JPG|300px]][[File:Backpack.JPG|300px]]
[[File:Backpack2.JPG|300px]][[File:Ohrring.JPG|300px]]
[[File:Backpack2.JPG|300px]][[File:Ohrring.JPG|300px]]
[[File:Ring.JPG|300px]][[File:Stirnband.JPG|300px]]
[[File:Ring.JPG|300px]][[File:Stirnband.JPG|300px]]


[[File:Elektroniksens.jpeg|600px]]
[[File:Elektroniksens.jpeg|600px]]


[[File:Atriummmi.JPG|200px]][[File:Baahnhof.JPG|200px]][[File:BAhnhoff.JPG|200px]]
[[File:Atriummmi.JPG|200px]][[File:Baahnhof.JPG|200px]][[File:BAhnhoff.JPG|200px]]
Line 24: Line 28:
[[File:Waaaasser.JPG|200px]][[File:Wasssssser.JPG|200px]][[File:Zeitschrifttt.JPG|200px]]
[[File:Waaaasser.JPG|200px]][[File:Wasssssser.JPG|200px]][[File:Zeitschrifttt.JPG|200px]]
[[File:Aframe.JPG|200px]]
[[File:Aframe.JPG|200px]]




Line 40: Line 45:




{{#ev:vimeo|755708631}}






 
Due to my personal upbringing in the antroprosophic movement, I was inspired by it. The project is created around the believes of it.
Due to my personal upbringing in the antroprosophic movement, I was inspired by it. The project is created around the believes of it. In order to understand the movement, I made this presentation.
 
[[:File:Präsentation Anthroprosophy.pdf]]
 
 
 




Line 169: Line 169:


The jewelry forms the end of the body sensor. It is made of coated copper, so that the value is measured only from a certain point. The design is very subtle, organic and simple. The total weight must not be too high, because it hangs on the ears.  
The jewelry forms the end of the body sensor. It is made of coated copper, so that the value is measured only from a certain point. The design is very subtle, organic and simple. The total weight must not be too high, because it hangs on the ears.  
[[/'''WORK IMPRESSIONS''']]








[[/'''WORK IMPRESSIONS''']]


[[/'''REFERENCES +INSPIRATION''']]
[[/'''REFERENCES +INSPIRATION''']]
'''CONCEPT SHEET'''
[[:File:CONCEPT OCE 2005221UD.pdf]]
''PRESENTATION BASE OF ANTHROPOSOPHY''
[[:File:Präsentation Anthroprosophy.pdf]]

Latest revision as of 22:14, 30 September 2022

TRANSCENDENTAL LIE-DETECTOR

Graaaphics.png


For my project under the Term Observe Experiment Connect I build a device that helps me to understand and perceive my environment better. For this purpose, sensors (light, gas, temperature) are sewn into a WEARABLE which will collect specific values from different circumstances. I measure my own electrical currents to observe whether different circumstances have an influence on my body. when a intersection of the measured data occurs, it will be experienced (vibration).


Armband.JPGBackpack.JPG Backpack2.JPGOhrring.JPG Ring.JPGStirnband.JPG


Elektroniksens.jpeg


Atriummmi.JPGBaahnhof.JPGBAhnhoff.JPG Barfusss.JPGFlyyy.JPGNahkauff.JPG Rolltreppe.JPGShowoff.JPGSteinesteine.JPG Steubenstraße.JPGTiefgarage.JPGTunnelll.JPG Waaaasser.JPGWasssssser.JPGZeitschrifttt.JPG Aframe.JPG


In many cultures, as in science, it is believed that where we are and the circumstances of that place affect our body energy, posture and soul. The more consciously we move within it, the more our spirit is able to evolve and see and understand the world in a divine way. I have been dealing with spiritual questions and doubts for a long time. With these observations I hope for small revelations. as well in the time where I am creating and moving.



Due to my personal upbringing in the antroprosophic movement, I was inspired by it. The project is created around the believes of it.



REALIZATION


Illustrt.jpg


The Device

Fully1.jpg


This Device will be made out of five components:

  • Electronics that measure the energy flowing through my body and sensors that collect data from the enviorment
  • Jewlery that forms the end of the "Body-Sensor"
  • A vest/harness to store the electronics and powersource
  • A dress that is inspired by the belives of the antroprosophical movement
  • A output that demonstrates the connecting moment


Design and Concept Phase


Electronics and Arduino Code

To measure the environmental values, a light sensor, a gas sensor and a temperature sensor are connected to an Arduino Nano. The values of these are compared with those of the ground sensor (Sensor by Martin Howse). Then, when these values overlap, the output, a vibration is triggered at a vibration module.

#define vibOutPin 4 //Vibrationsmotor als Konstante "vibOutPin" an Digitalpin 4
int bodyPin = A0;
int lightPin = A1;
int tempPin = A2;
int gasPin = A3;
int bodyVal,lightVal,tempVal,gasVal = 0; //Variablen "___Val" global definieren
int tempDiff,lightDiff,gasDiff = 0; //Variablen für Differenz zwischen "bodyVal" und "___Val"
void setup() {
 pinMode(vibOutPin, OUTPUT); //Pin für Output definieren
 Serial.begin(9600); //Geschwindigkeit für serielle Übertragung bestimmen
}
void loop() {

 bodyVal = analogRead(bodyPin); 
 Serial.print ("Body: ");
 Serial.print(bodyVal);
 Serial.print("   ==   ");
 lightVal = analogRead(lightPin);
 Serial.print( "Licht: "); 
 Serial.print(lightVal);
 Serial.print("   ||   ");
 tempVal = analogRead(tempPin);
 Serial.print ("Temperatur: ");
 Serial.print(tempVal);
 Serial.print("   ||   ");
 gasVal = analogRead(gasPin);
 Serial.print("Gas: ");
 Serial.print(gasVal, DEC);
 Serial.print("");
 Serial.println("   ||   ");
 lightDiff = lightVal - bodyVal;
 tempDiff = tempVal - bodyVal;
 gasDiff = gasVal - bodyVal;
 
 Serial.print("Difference:              ");
 Serial.print(lightDiff);
 Serial.print("      ||      ");
 Serial.print(tempDiff);
 Serial.print("      ||      ");
 Serial.println(gasDiff);
 Serial.println("");
 if (tempDiff >= -50 && tempDiff <= 50 || lightDiff >= -50 && lightDiff <= 50 || gasDiff >= -50 && gasDiff <= 50) 
{
   digitalWrite(vibOutPin,HIGH);
   delay(4000);
   digitalWrite(vibOutPin, LOW);
 } else {
   digitalWrite(vibOutPin, LOW);
 }
 delay(30000);
}

Harness


To store the electronics a vest is needed that requires these factores:

  • Functional
  • Simple
  • Easy to take on/off
  • Subtle, non-dominant aesthetics
  • Unsexual
  • (Avoid Gender association)
  • Flexible for movement but still resistant
  • Does need the measurements of the electronics but must be flexible for sudden change of electronics
  • (Water resistant)

Additionally a bracelet is made to attach and wear the vibration motor. Because the light sensor should not be influenced by my shadows a headband is necessary.


Dress

The design of the dress is based on the teachings and views of Anthroprosophy. The silluette imitates the, that of the clothing of the Euritmy and that of the ancient Greeks. Also it is cut wide and airy, allowing freedom of movement and the feeling of connecting to the enviorment. The color is chosen intuitively and corresponds to my personal aesthetics and aura. The fabric is sustainably produced and dyed linen fabric.


Jewlery

The jewelry forms the end of the body sensor. It is made of coated copper, so that the value is measured only from a certain point. The design is very subtle, organic and simple. The total weight must not be too high, because it hangs on the ears.



/WORK IMPRESSIONS

/REFERENCES +INSPIRATION