The final submission for the Digital Media DOING module requires a response to the theme of “Extensions of Man” – invoking a McLuhanesque conception of communications media & technology as extensions ov our human capability.
This relates nicely to a new project I have been developing – Augmented Inadequcies – in collaboration with the artist Alan Smith and Allenheads Contemporary Arts:
Augmented Inadequacies
by John OShea
Traditional technological developments promise ever greater speed, power and independence and foster a notion of autonomous identity. Invention, a beloved offspring of necessity, solves problems and bridges gaps, effortlessly articulating both will and whim, diluting distance and domesticating desire. Through an open-ended dialogue and iterative process, John O’Shea will work in collaboration with Alan Smith, to propose and prototype new technological works – “strange inventions” – which will run counter to prevailing technological trends and attempt to make our human vulnerability, fallibility and mutual inter-dependence more visible and tangible.
Quick update on the Tilt-Tick-Tock (hourglass) concept outlined in the previous post – here it is!
The device translates the ‘turning over’ action associated with the traditional egg-timer into the revealed words ‘tick and ‘tock’ – archetypal (and now redundant) by-products of clock mechanisms.
Basically, an Arduino micro-controller has been pre-programmed to send alternate bursts of full and zero power to a DC motor from a 9v battery ONLY when the device is turned over (because the action of turning over is detected by a mercury tilt sensor).
See TiltTickTock in action below:
Full power is supplied for 3.4 seconds (a time established by trial and error) and this rotates the single aperture in the yellow acrylic ‘face’ around to the approximate position of the written words – ‘tick’ and ‘tock’.
It should be pointed out that a servo motor would give far better ‘accuracy’ in designating the exact position of the ‘face’ if that were desired. The challenge here was to make something interesting with these quite blunt and clumsy components and actually, the inevitable inaccuracy of the DC motor solution (due to friction, difference of power, loss of power etc.) works well here as an interesting analogue to the the problems faced by the early manufacturers of the mechanical clocks in keeping to time (prior to the design of various escapement, containing and regulating the mechanism.) If you observe carefully you will be able to see that the TiltTickTock runs slightly ‘fast.’
Another aspect of the device which is aesthetically interesting is the way in which the circular aperture of the yellow ‘face’ appears to eclipse the white ‘tick’ and ‘tock’ elements – indirectly invoking movements of the earth, sun and moon (by which we measure the passage of time).
Images of parts/process, various schematics (thanks to Fritzing) and arduino code below:
components/tools identified:
Arduino microcontroller
breadboard
DC Motor
mercury tilt sensor
TIP120 transistor
10Kohm resistor
9 v batteries (for both arduino and motor)
wires
various circular lids etc. to test rotation
clear plastic sweetie box is excellent for containing projects!
…add ‘tick’ and ‘tock’ circles (authentic typed and re-scanned from my typewriter) – ‘face’ simple vector cut out using laser-cutter:
//TiltTickTock by John O’Shea
//Monday 10th May 2010
//MRes. Digital Media DOING Module – Jamie Allen
//Newcastle University Culture Lab
// Arduino code allowing tilt sensor to trigger motor via transistor
// micro-project translating ‘egg-timer’ metaphor to ‘escapement’ metaphor
//via electronics and code
// constants won’t change. They’re used here to
// set pin numbers:
const int tiltPin = 7; // the number of the tilt sensor pin
const int transistorPin = 9; // the number of the transistor pin
// variables will change:
int tiltState = 0; // variable for reading the tilt sensor status
void setup() {
// initialize the transistor pin as an output:
pinMode(transistorPin, OUTPUT);
// initialize the tilt pin as an input:
pinMode(tiltPin, INPUT);
}
void loop(){
// read the state of the tilt sensor value:
tiltState = digitalRead(tiltPin);
// check if the tilt sensor is activated.
// if it is, the transistor is open and the clock programme runs:
if (tiltState == HIGH) {
// turn transistor on:
digitalWrite(transistorPin, HIGH);
delay(3400);
digitalWrite(transistorPin, LOW);
delay(1000);
}
else {
// close transistor (clock circuit off):
digitalWrite(transistorPin, LOW);
}
}
/*
this code is a hybrid of:
Button
2005 by DojoDave <http://www.0j0.org>
modified 17 Jun 2009
by Tom Igoe
This example code is in the public domain.
In considering gesture, interaction, sound and public space intervention the organ grinder (and his monkey) are springing to mind…
The wikipedia entry in this case is really excellent and says more than I could say – some highlights:
They apparently were not interested in keeping their instrument in tune or cranking at a rate suited to the music which was “programmed” in their barrel organ.
Many cities in the United Kingdom had ordinances prohibiting organ grinders. The authorities often encouraged policemen to treat the grinders as beggars or public nuisances.
the disappearance of organ grinders from European streets was in large part due to the early application of national and international Copyright laws.
It's over a year now since I first met the group of young people involved in 'Project Triangle'. Looking back, it's easy to see a huge increase in confidence, both from their involvement in the project, and from the work they've done in presenting the film and educational DVD to various groups across the country. On the main, they […]
A couple of weeks ago I took part in DIY Music Day at the World Museum, Liverpool. The event was organised by Ross Dalziel of Sound Network, as part of a series of events called How Why DIY? which aimed to open up technology to a wider audience.This event explored ways in which people could engage with sound, from making their own thumb pianos from simple ma […]
Re-Dock are delighted to have been selected for a Digital Media Labs, research and development residency, happening in Hull at the end of October.The residency has been organised as part of the commissioning process for an interactive art work for the new Wilberforce Health Centre in Hull. And, our successful application means that one of us will be spending […]
"A Small Cinema" has grown beyond our control and, like all great 21st century ideas it has gone VIRAL! We really hoped this day would come (but we hadn't realised that it would be quite so soon!).Tonight a small cinema opens in Oldham, operating out of an empty shop and showing a run of feature films. The project, has been set up by 17 year o […]
As a collective, I think all us Re-Dockers are very clear and what is and what is not a Re-Dock project. We've mainly worked this out from our own work practices, where making a living is a major priority. Re-Dock as a CIC can be much more selective. However, it's interesting examining how our work as individuals has grown and been influenced by ou […]
We have just started work on another Re-Dock project involving the Leeds-Liverpool canal. Building on the work we did for Canal &, we are using the memories and ideas gathered as a starting point for a signage installation next to the new Pennington Road bridge.'Constellation Of Signs' will be made of over 100 aluminium road and tourist informa […]
Recent Comments