Sophia Amelia Eickhoff: Difference between revisions

From Medien Wiki
No edit summary
No edit summary
Line 12: Line 12:
my body. I want to compare the data to another and when a intersection occurs, it will be shown.
my body. I want to compare the data to another and when a intersection occurs, it will be shown.


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


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


[[File:Atriummmi.JPG|200px]]
[[File:Atriummmi.JPG|250px]]
[[File:Baahnhof.JPG|200px]]
[[File:Baahnhof.JPG|250px]]
[[File:BAhnhoff.JPG|200px]]
[[File:BAhnhoff.JPG|250px]]
[[File:Barfusss.JPG|200px]]
[[File:Barfusss.JPG|250px]]
[[File:Flyyy.JPG|200px]]
[[File:Flyyy.JPG|250px]]
[[File:Nahkauff.JPG|200px]]
[[File:Nahkauff.JPG|250px]]
[[File:Rolltreppe.JPG|200px]]
[[File:Rolltreppe.JPG|250px]]
[[File:Showoff.JPG|200px]]
[[File:Showoff.JPG|250px]]
[[File:Steinesteine.JPG|200px]]
[[File:Steinesteine.JPG|250px]]
[[File:Steubenstraße.JPG|200px]]
[[File:Steubenstraße.JPG|250px]]
[[File:Tiefgarage.JPG|200px]]
[[File:Tiefgarage.JPG|250px]]
[[File:Tunnelll.JPG|200px]]
[[File:Tunnelll.JPG|250px]]
[[File:Waaaasser.JPG|200px]]
[[File:Waaaasser.JPG|250px]]
[[File:Wasssssser.JPG|200px]]
[[File:Wasssssser.JPG|250px]]
[[File:Zeitschrifttt.JPG|200px]]
[[File:Zeitschrifttt.JPG|250px]]
[[File:Aframe.JPG|200px]]
[[File:Aframe.JPG|250px]]





Revision as of 12:36, 30 September 2022

TRANSCENDENTAL LIE-DETECTOR

Graaaphics.png

For my project under the Term Observe Experiment Connect I want to design a device that helps me to better understand and perceive my environment. For this purpose, sensors are sewn in 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. I want to compare the data to another and when a intersection occurs, it will be shown.

Armband.JPG Backpack.JPG Backpack2.JPG Ohrring.JPG Ring.JPG Stirnband.JPG

Elektroniksens.jpeg

Atriummmi.JPG Baahnhof.JPG BAhnhoff.JPG Barfusss.JPG Flyyy.JPG Nahkauff.JPG Rolltreppe.JPG Showoff.JPG Steinesteine.JPG Steubenstraße.JPG Tiefgarage.JPG Tunnelll.JPG Waaaasser.JPG Wasssssser.JPG Zeitschrifttt.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.


Nature is the great tranquillity compared to our mobility. That is why man will love it more and more the finer and more mobile he becomes

-Christian Morgenstern


Illustrt.jpg

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





REALIZATION


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


CONCEPT SHEET

File:CONCEPT OCE 2005221UD.pdf


PRESENTATION BASE OF ANTHROPOSOPHY

File:Präsentation Anthroprosophy.pdf