Time is a technology

From Lahaag - Project wiki
Revision as of 13:40, 27 August 2014 by Atkn (talk | contribs)
Jump to navigationJump to search


“There can be no silence up in the mountains, since their very contours roar. And for there to be silence, time itself has to attain a sort of horizontality; there has to be no echo of time in the future, but simply a sliding of geological strata one upon the other giving out nothing more than a fossil murmur.” America, Jean Baudrillard




A stone is dragged through the space using a hoist. The movement is so slow that it is hardly visible. The sound of the stone moving across grains of sand is picked up by microphones inside the stone and this sound is amplified through copper plates serving as loudspeakers. The extremely slow movement magnifies, as it were, each point of contact, making time tangible – or rather: audible – through the creaking and grating sounds. As the day progresses, the sound cumulates into an increasingly richer and fuller sound. At the end of the day, the sounds become a recording of the amount of energy necessary to move the stone. Like in his other works, the artist Gert Aertsen here reflects on the relationship between time and technology in our current information society. Aertsen tries to reverse this relationship and make it slow down rather than wanting to continue increasing its speed.

This installation is part of a series works which focus on time and our experience of time. In this particular case. Time is stretched and recondensed.




Ecos small.jpg Currentsituation.jpg Base1.jpg Settingupstructure.jpg
00 : Current situation at Réze site 01 : First step --> installing Version:base 02 : Building platform on top op the existing structure for windmill project ATKNv2.
Base extended.jpg Withmill.jpg Trunk01 copy.jpg Container.jpg
03 : extending base 04 : Installing a new type of windmill. Trunk 00 : adding module for moss_experiment by [David De Buyser ] 05 : container for storing air compressed by windmill ATKNv2
... Speakers added.jpg On wall.jpg Withgreenhouse.jpg
Trunk 00a : adding platform for growing moss 06 : adding sound chambers for sound. 07 : moving sound chambers onto wall surrounding ecos site Trunk 02 : Adding greenhouse for urban gardening project
Removing windmill.jpg ... Pier.jpg ...
09 : removing windmill Trunk 01 : building windmill on remote site 01
... Duckz.jpg Riverborder.jpg ...
Trunk 02 : building windmill on remote site 02 Trunk 03 : building windmill on remote site 03




I'm using a discontinued magnetic rotary encoder v2.1 from makerbot. The arduino code for it i found here : https://web.archive.org/web/20120105015729/http://wiki.makerbot.com/mre2


#define ENCODER_A_PIN 2
#define ENCODER_B_PIN 3

long position;

void setup()
{   
Serial.begin(19200);   
Serial.println("Started");    
pinMode(ENCODER_A_PIN, INPUT);   
pinMode(ENCODER_B_PIN, INPUT);    
attachInterrupt(0, read_quadrature, CHANGE);
} 


void loop()
{   
Serial.print("Position: ");   
Serial.println(position, DEC);   
delay(1000);
} 


 void read_quadrature()
{    
// found a low-to-high on channel A  
if (digitalRead(ENCODER_A_PIN) == HIGH)  
{      
// check channel B to see which way   
if (digitalRead(ENCODER_B_PIN) == LOW)       
position++;    
else       
position--;  
}  // found a high-to-low on channel A  
else                                          
{    
// check channel B to see which way    
if (digitalRead(ENCODER_B_PIN) == LOW)        
position--;    
else        
position++;  
}
}