Cosmo Schueppel: Difference between revisions

From Medien Wiki
No edit summary
Line 19: Line 19:
This work was funded by the Bauhaus University Summaery Fonds and was shown at the Bauhaus University Summaery 2022
This work was funded by the Bauhaus University Summaery Fonds and was shown at the Bauhaus University Summaery 2022


[[File:phonGardDiagramm.png|1000px]]
[[File:doc1.jpg|1000px]]
[[File:doc2.JPG|1000px]]
[[File:doc3.JPG|1000px]]
[[File:doc4.JPG|1000px]]
[[File:doc5.JPG|1000px]]
[[File:doc6.JPG|1000px]]
[[File:doc7.JPG|1000px]]


void setup() {
  Serial.begin(9600);
  //start Serial


}


void loop() {
  int elPot = analogRead (A0);
    //read A0 (connected to plant)
    // elPot is the relative strenght of electric potential measured
  int potMap = map (elPot, 0, 1023, 1000, 2500);
    //scale full range of potential to 1000-2500 Hz (freq)
  tone(7, potMap);
    // sonify (pin7 connected to speaker) mapped electric potential
  Serial.print ("electric potential");
  Serial.println (elPot);
    // print relative electric potential to sserial plotter
  Serial.print (potMap);
  Serial.println ("Hz");
    // print the frequency of the sonification to the serial plotteer
}





Revision as of 13:13, 15 August 2022



Untitled (Presentation (169)).jpg


The movement responsive sound installation awareness and movement in a phonetic garden is a speculative attempt to make the field of perception of a plant experienceable. The installation uses plants to measure the naturally occurring electromagnetic fields in the exhibition space. Through this, the self build measuring device can ‘sense’ humans by measuring their natural electric field. Measuring electric potential is used as a reference to the fact that plants use electric signal for internal and external communication. Furthermore it opens up the speculative thesis, that plants might be electrosensitive beings.

The work tries to illustrate plants as sentient beings. To be a sentient being means to be able to perceive your surroundings. By this it aims to open the topic of subject/object relationships. Plants are widely conceived as objects to be used and to be controlled. By giving them a voice, the installations shifts the awareness of the visitor, from passive and unresponsive, to an active and aware conception of the plants. In other words, the plant is seen as a being that is alive and that is able to see ‘me’. By showing the sonification device openly and stylised - the plants steps into a symbiosis with it. The electronic device is used and is perceived as a bridge between human and plant. Technology functions as a translator between wo*mankind and nature - as an instrument for connection and interaction.

At the beginning of this process, I went out to find a way to measure how a plant can sense the world. Scientifically it is very well known that plants can adjust to different environmental factors, like heat, humidity, light and even touch. I quickly got captivated by the possibility that plants can sense even more, that they have a clearer picture of their surroundings. The idea of plants as electrosensitive beings rose up in me. This thesis is of course highly speculative and derived out of a vast unknowing. But the idea that plants might be even more sentient than we think stayed with me. Out of the scattered knowledge I gathered, (references at the bottom) I believe that measuring different electric potentials in and in between plants and measuring their electric signalling, will be an opportunity to learn more about the informations that plants can notice. I am planning to continue this research in the coming semester.

This work was funded by the Bauhaus University Summaery Fonds and was shown at the Bauhaus University Summaery 2022

PhonGardDiagramm.png Doc1.jpg Doc2.JPG Doc3.JPG Doc4.JPG Doc5.JPG Doc6.JPG Doc7.JPG

void setup() {

 Serial.begin(9600);
 //start Serial

}

void loop() {

 int elPot = analogRead (A0);
   //read A0 (connected to plant)
   // elPot is the relative strenght of electric potential measured
 int potMap = map (elPot, 0, 1023, 1000, 2500);
   //scale full range of potential to 1000-2500 Hz (freq)
 tone(7, potMap);
   // sonify (pin7 connected to speaker) mapped electric potential
 Serial.print ("electric potential");
 Serial.println (elPot);
   // print relative electric potential to sserial plotter
 Serial.print (potMap);
 Serial.println ("Hz");
   // print the frequency of the sonification to the serial plotteer

}