This work is a machine for producing geometrical drawings. Inspired by the harmonograph, an invention from the nineteenth-century, the device uses a pen attached to a system of pendulums to generate complex forms comprised of curved lines. Once the initial conditions – pen, pendulums, momentum – are established, the unfolding process completes the artwork.
Damien Hirst
I love making spin paintings with kids, I’ve got a spin machine that I take to my kids' school and get all the kids doing them, the joy of making them is what somehow makes them great art and all those crazy moments throwing paint around and mostly not knowing what you’re doing is distilled in the final result and that’s why they’re so amazing; they immortalise a feeling or a collection of feelings, a fleeting, colourful happiness, they are like tracks in time, like footprints in the snow.
What does an artwork say about an artist’s personality? Is the person of the artist always present in the piece of art? It’s something I’ve thought of quite often with the spins because they’re an interesting meditation on the role of the artist – the results manage to say not a lot about the person who has spun them, because they’re governed by the forces of chance and movement, and in the end it’s harder to make a bad one than a good one and they all look similar in some way whoever makes them.
#include<Servo.h>Servomyservo;intpos=0;intstep=1;voidsetup(){myservo.attach(9);// attaches the servo on pin 9 to the servo object
}voidloop(){myservo.write(pos);// tell servo to go to position in variable 'pos'
pos=pos+step;if(pos>=180||pos<=0){step=-step;}delay(15);}
#include<Stepper.h>constintstepsPerRevolution=2048;// Connect Arduino to ULN2003 like so:
// Pin 8 -> IN1, Pin 9 -> IN2, Pin 10 -> IN3, Pin 11 -> IN4
SteppermyStepper=Stepper(stepsPerRevolution,8,10,9,11);voidsetup(){myStepper.setSpeed(5);// maximum = 15!
}voidloop(){// Step one revolution in one direction:
myStepper.step(stepsPerRevolution);delay(500);// Step one revolution in the other direction:
myStepper.step(-stepsPerRevolution);delay(500);}