Art


7
Nov 10

The Followers

The Followers by Makiko Yoshii and Jay Pozo from Granville Island Works on Vimeo.


I worked on this project with Makiko Yoshi during the Cultural Olympiad at Emily Carr University, held during the Vancouver 2010 Winter Olympics. Makiko’s beautifully built case contained a pair of Arduino driven motor controllers and a pair of 12V motors. The Arduino monitored the robot’s direction in relation to the metal train tracks in the ground in front of Emily Carr University, adjusting to turn slowly, giving the impression of a meandering, searching being wandering down the road.


30
Dec 09

Arduino MIDI controller

A project that I’ve been working will use ultrasonic range finders to determine the locations of people in a space to send MIDI signals back to Ableton Live to trigger tracks of sound. This prototype sends one of four byte strings that make up a MIDI controller command, based on the distance from the sensor. It’s made up of an Arduino, a Maxbotix EZ1, a MIDI to USB cable and some RGB LEDs for visual feedback.

Arduino MIDI Controller

Simply put, if you’re within 8 inches of the sensor, one measure of music on the computer plays and the LEDs show one color. Greater than 16 inches, a different measure plays and the LEDs change to a different color. More than 24 inches away from the sensor and you get yet a different measure of music and color on the rgb LEDs. In the end I hope to scale the spatial awareness of this to intervals within 10 feet, with the LEDs lighting 1′x2′ plexiglass panels with the sensors mounted below the panels, facing into a space.

For now, here’s some Arduino code if anybody’s interested in playing with it:

/*

CTYSND - a spatial musical instrument
Author: Jay Pozo

http://www.jaymatter.com

December 2009

for more info about MIDI messages, go here:

http://www.midi.org/techspecs/midimessages.php

*/

// data pin for the range finder sensor
const int sensorPin1 = 6;

byte firstNote = 0x01;
byte secondNote = 0x02;
byte thirdNote = 0x03;

// commandByte: 0x90 is a note
// 0xB1 is a controller change on channel 2
byte commandByte = 0xB1;

// the third byte sends the velocity. In this case, 0x7F is max of 127
byte thirdByte = 0x7F;
byte lastNotePlayed;

long sensor1Pulse;
long distance1; // in inches

// pins for the colored led panels
// this will have to change later, probably through a shift register to support 8 sets of LEDs
int redPin1 = 9;
int greenPin1 = 10;
int bluePin1 = 11;

// our ranges, in inches
int rangeStart = 0;
int rangeStep1 = 8;
int rangeStep2 = 16;
int rangeStep3 = 24;

void setup() {

Serial.begin(31250);

pinMode(redPin1, OUTPUT);
pinMode(greenPin1, OUTPUT);
pinMode(bluePin1, OUTPUT);

pinMode(sensorPin1, INPUT);
}

void loop() {

sensor1Pulse = pulseIn(sensorPin1, HIGH);
distance1 = sensor1Pulse/147; // distance is in inches (see documentation of sensor for value of 147)

if ( distance1 > rangeStart && distance1 < rangeStep1 )
{
analogWrite(redPin1, 255);
analogWrite(greenPin1, 255);
analogWrite(bluePin1, 255);
if (lastNotePlayed != firstNote)
{
noteOn(commandByte, firstNote, thirdByte);
lastNotePlayed = firstNote;
}

}

if ( distance1 > rangeStep1 && distance1 < rangeStep2 )
{
analogWrite(redPin1, 255);
analogWrite(greenPin1, 0);
analogWrite(bluePin1, 255);
if (lastNotePlayed != secondNote)
{
noteOn(commandByte, secondNote, thirdByte);
lastNotePlayed = secondNote;
}

}

if ( distance1 > rangeStep2 && distance1 < rangeStep3 )
{
analogWrite(redPin1, 255);
analogWrite(greenPin1, 255);
analogWrite(bluePin1, 0);
if (lastNotePlayed != thirdNote)
{
noteOn(commandByte, thirdNote, thirdByte);
lastNotePlayed = thirdNote;
}

}

if (distance1 > rangeStep3 )
{
analogWrite(redPin1, 0);
analogWrite(greenPin1, 0);
analogWrite(bluePin1, 255);

// noteOff();

}

delay(300);
}

void noteOff()
{
Serial.print(0xFC,BYTE);
}

void noteOn(int cmd, int pitch, int velocity) {
Serial.print(cmd, BYTE);
Serial.print(pitch, BYTE);
Serial.print(velocity, BYTE);
}


27
Dec 09

Rapid prototyping

This summer I was lucky to see some real examples of the  rapid prototyping at work in the Italian design and architecture industries.  Based in Milan, ONEOFF positions themselves as “the prototype of a new generation of modelling labs and expresses [sic] the potential of digital technology applied to rapid manufacturing”. They’ve spent a lot of time becoming experts in creating prototypes – and most interestingly for myself, in rapid prototyping.

(Image borrowed from ONEOFF's Flickr stream)

Rapid prototyping is an automated process which allows for complex objects to be produced before the manufacturing stage. Layers of a material (often plastic but also ceramic) are “printed” on top of each other until the final form is finished.  No tools or moulds are required – just a 3D model of the prototype. The value here is in the ability to quickly create something for discussion and analysis.  Complex objects can be created in mere hours.  Artists also often use rapid prototyping technology to create “sculpted” work.

(Image borrowed from ONEOFF's Flickr stream)

The technology for high quality rapid prototyping isn’t cheap – $10,000 will get you something in the entry level.   There are however, a couple of alternatives that come from the open source crowd ( for whom I have much love ).  I was recently turned onto the RepRap, an open source project that comes in the form of a wiki that documents the parts and instructions to build your own 3D printer – for less than $1000. You can even buy a kit for $750 that gets shipped to your house for you to assemble in a day or so.  MakerBot is another open source solution, with plans for parts so you can build your own.  The MakerBot kit sells for the same price.

RepRap from Adrian Bowyer on Vimeo.

According to Google’s Open Source Programs Manager, Chris DiBona, the Rep Rap you can  ”think of RepRap as a China on your desktop”.  Hah.

If I didn’t have to pay for tuition… I’d have one keeping myself and my room mate up at night.


21
Dec 09

The Importance of Prototyping

I’ve been working with an art student at Emily Carr University to design and build one piece of a bigger art project, Code.lab. Makiko’s project is to build a “robot” that follows the metal railroad tracks that run around Granville Island and in front of ECU. We first looked at line following robots to inform some of our decisions around the form for the sensors, the motor and wheel arrangement, and the general shape of the final artifact. Makiko’s desire to shape the aesthetic to her artistic vision is definitely helping with material and part choice, but the various versions of prototypes that we built together helped to create objects that we could discuss and use as a platform for ideation.

Mindstorms Line Follower

The first real prototype, past sketches, was a Lego Mindstorms line follower. We were able to observe how an optic line follower worked, with a single sensor on the front of the robot detecting the black color of the line against a white surface.

The next version was an arduino based line follower that we thought we would use Hall-Effect sensors to detect the metal rail tracks with. We took a small prototyping step here to test the Hall-Effect sensors which we discovered were overkill for what we wanted to do. In the end we chose to use rare earth magnets mounted on the arms of contact switches to detect the metal tracks.

Prototypes informed our choice of wheel clearance relative to the robot chassis, helped us determine that the sensors should be mounted on the front of the robot. Testing versions of code helped me come up with the final code that drives the servos to follow the metal tracks.

Every prototyping step helped us refine an abstract thought to a more certain form, a form that functions in a way that is close to what we had originally envisioned. Versions of the parts of this project let us look closely at our problem space and also exposed problems that we had no idea existed. We were able to physically discuss and evaluate our design decisions, considering Makiko’s artistic vision and the pragmatic need to make this robot move and follow the tracks. We are now at a prototype version which is very close to the final form – new parts in the coming weeks will bring us to the final scale. It will be interesting to see what the final form looks like come February when the final exhibit opens to the public. Stay tuned for more of our progress.


27
Aug 09

Pen & Paper Apparel

Buy a shirt!

Buy a shirt!

Some visionary, hopeful work coming out of Vancouver with Pen & Paper Apparel.  Support meaningful design and buy one of their shirts here or read their blog here.


22
Jul 09

The Man Without the Machine

Red

Back from a profound trip to Italy.  Lots of insight on art, design, life – but more on that later.  Funny how that could tie to this guy: Red – The Man Without The Machine, but he inspired my first posting now that I’m back with my extended European experience still fresh in my mind.  What’s the common bond you ask?  The drive, passion, the humanity in the execution. This dude had no home, wrote and arranged his own tune in his head, used his body as an instrument. No computers, no drums, no auto-tuner.  F-ing dope. Props to Stonesthrow for distributing his vinyl.