No edit summary |
No edit summary |
||
Line 40: | Line 40: | ||
<div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/755708631?h=e69c5e1799&badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen style="position:absolute;top:0;left:0;width:100%;height:100%;" title="OEC AMELIA.mp4"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script> | |||
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. |
Revision as of 21:56, 30 September 2022
TRANSCENDENTAL LIE-DETECTOR
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).
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.
<script src="https://player.vimeo.com/api/player.js"></script>
Due to my personal upbringing in the antroprosophic movement, I was inspired by it. The project is created around the believes of it.
REALIZATION
The Device
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.
CONCEPT SHEET
File:CONCEPT OCE 2005221UD.pdf
PRESENTATION BASE OF ANTHROPOSOPHY