Difference between revisions of "Time is a technology"

From Lahaag - Project wiki
Jump to navigationJump to search
Line 19: Line 19:
  
  
{|style="border-collapse: separate; border-spacing: 5; border-width: 1px; border-style: solid; border-color: #000; padding: 0"
+
{|style="border-collapse: separate; border-spacing: 0; border-width: 0px; border-style: solid; border-color: #000; padding: 0"
 
|-  
 
|-  
 
|[[File:Timeisatech_00.jpg|240px]]
 
|[[File:Timeisatech_00.jpg|240px]]
Line 29: Line 29:
 
|[[File:Timeisatech_04.jpg|240px]]
 
|[[File:Timeisatech_04.jpg|240px]]
 
|[[File:Timeisatech_07.jpg|240px]]
 
|[[File:Timeisatech_07.jpg|240px]]
|[[File:Timeisatech_05.jpg|240px]]
+
|[[File:Timeisatech_09.jpg|240px]]
|[[File:Timeisatech_06.jpg|240px]]
+
|[[File:Timeisatech_05.jpg|320px]]
 
|- valign="top"
 
|- valign="top"
 
|-
 
|-
 
|-  
 
|-  
|...
+
|[[File:Timeisatech_06.jpg|240px]]
|[[File:Speakers_added.jpg|240px]]
+
|
|[[File:On_wall.jpg|240px]]
+
|
|[[File:Withgreenhouse.jpg|240px]]
+
|
|- valign="top"
+
 
|style="width: 25%;background-color:white;" | Trunk 00a : adding platform for growing moss
 
|style="width: 25%;background-color:white;" | 06 : adding sound chambers for sound.
 
|style="width: 25%;background-color:white;" | 07 : moving sound chambers onto wall surrounding ecos site
 
|style="width: 25%;background-color:white;" | Trunk 02 : Adding greenhouse for urban gardening project
 
|-
 
|- valign="bottom"
 
|[[File:Removing_windmill.jpg|240px]]
 
|...
 
|[[File:Pier.jpg|240px]]
 
|...
 
|- valign="top"
 
|style="width: 25%;background-color:white;" | 09 : removing windmill
 
|style="width: 25%;background-color:white;" |
 
|style="width: 25%;background-color:white;" | Trunk 01 : building windmill on remote site 01
 
|style="width: 25%;background-color:white;" |
 
|-
 
|-
 
|...
 
|[[File:Duckz.jpg|240px]]
 
|[[File:Riverborder.jpg|240px]]
 
|...
 
|- valign="top"
 
|style="width: 25%;background-color:white;" |
 
|style="width: 25%;background-color:white;" | Trunk 02 : building windmill on remote site 02
 
|style="width: 25%;background-color:white;" | Trunk 03 : building windmill on remote site 03
 
|style="width: 25%;background-color:white;" |
 
|-
 
 
|}
 
|}
  

Revision as of 14:04, 27 August 2014



“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.




Timeisatech 00.jpg Timeisatech 01.jpg Timeisatech 02.jpg Timeisatech 03.jpg
Timeisatech 04.jpg Timeisatech 07.jpg Timeisatech 09.jpg Timeisatech 05.jpg
Timeisatech 06.jpg




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++;  
}
}