Thursday, October 18, 2007
Processing
The brains behind the wonderful, easy to use, and open, Processing programming language have just realsed an update. Processing is now at version 127. I can not stress how much I love this intitiative. Processing can be used with the Arduino to make interesting interactive works of art.
Labels:
arduino,
beta,
Processing,
Processing.org,
programing,
programming
Monday, October 15, 2007
Arduino Workshop - Update
This weeks Arduino class will be canceled. However, class' will continue the following week.
Additionally the Arduino class will be expanded to cover programming with Processing.
These two systems can also be used in tandem to create interactive works that exist in both a physical and digital world. Hybridize your projects.
Lets collaborate.....
Additionally the Arduino class will be expanded to cover programming with Processing.
These two systems can also be used in tandem to create interactive works that exist in both a physical and digital world. Hybridize your projects.
Lets collaborate.....
Labels:
arduino,
arduino class,
art,
contemporary,
creative,
ontario,
st. catharines
Friday, October 5, 2007
Textile Arduino

After being inspired by various Arduino projects I have decided to make a wearable LED based art piece, by incorporating traditional textiles used through antiquity, leather, AVR, and LED's. Leah Buechley's work with Textile based micro-controllers is a great inspiration to me. Her line of textile Arduino's called LillyPads have just been released through SparkFun Electronics.
Here are two images of my ATmega168 connected to leather. The horrible solder job is actually deliberate and is intended to act as a stop for the conductive threads attached to the pins of the integrated circuit. After stitching towards the IC come up with the needle from under the IC, wrap the conductive thread around the pin with the solder bead then make a knot. The hold is very secure. (I will post a drawing of how I tie my knots). I chose leather because of its thickness and rigidity. The likelihood of the leather folding over is also minimal which reduces short outs between traces. It is harder to work with and you need special needles, however, these are often inexpensive and readily available in most art supply stores (ie. Micheal's). The use of an IC socket is recommended for two reasons, first, you can remove your AVR from your project to reflash it using an ISP programmer. Second, you will need to bend some of the sockets pins and use the other unused pins to secure the IC socket to the leather. On the reverse side of the leather you will bend the remaining IC pins. Use an exacto knife to puncture holes through the leather, this will allow for easy socketing of the IC socket onto the leather.
Labels:
arduino,
art,
brian durocher,
durocher,
electronics,
fine art,
led,
lillypads
Thursday, October 4, 2007
Desktop Modificationous

After a full days work and five hours in the studio what better way is there to kill time than modifying your desktop. The thing I love about Mac's are the endless modifications you can do to them. I mean full GUI modifications. Simple tools like Unsanity's Shapeshifter, X Labels, and Fruity Menus allow you to do a complete overhaul on Apples beloved Aqua theme. I chose a theme called Kuro, which is handy for someone who produces art, edits photos, and makes music for extended periods of time like me. Combine this with Icons from Interfacelift and you have a winning theme suitable for the next OS distribution.
To continue a shift towards the dark colour of composite plastics I also changed the look of Firefox with a handy tool called Stylish. This add-on allows you to skin web-pages , site by site, change your Google search, Skin your GMail. The possibilities are endless. The thing I enjoy most about this add-on is the ability to avoid horrid, banal and unchanging web-pages. Google come on, its been what 5 years and your still using the white background. I guess unlike objects in the real world digital white is much easier to keep clean.
Labels:
customization,
icons,
os x,
personalize,
skin,
skins,
themes
Thursday, September 27, 2007
AVR Weaerable Continued
Stage two of the wearable project is completed. I have the micro controller off the Arduino board and running on its own. There is a slight flicker issue and I am not entirely sure what is causing it. Perhaps the 8 mHz Clock speed is two slow for a clean transition between colors.
Labels:
arduino,
art,
electronics,
textile arts,
wearables
Wednesday, September 26, 2007
A million billion trillion LCD Screens
So during my normal search for artistic programming applications and possibilities, I stumble across this interesting idea. Vision as the bugs see; this new compound eye has endless possibilities. Alas my dream is a reality. If you have not already come across this in your internet travels, you should know about the delight that is Processing.org. This little programming environment is an excellent way to learn programming and a wonderful tool for artists. Anything and everything are possibilities, interact with the Arduino, Bluetooth, Serial Communications, Trigger Textile-Based works or use Textiles to trigger your program. Oh how I love being uninhibited, programatically speaking of course. Alas you ask what is the point of all this, the "Eye" yes. Has one, two, three, four or even five screens just not been enough. Need to keep up with the Jones' well your in luck. Be the envy of all your friends and neighbours when you show them your Matrix-esque wall of light. Here is the link. Linked with Processing you can now output your eccentric creations ad-infinitum or more simply put in multiplicity.
Before you fling yourself into the amalgam of this digital utopia I call Processing.org, take a minute to look at the other projects that are currently underway at the website.
The future is limitless.
Before you fling yourself into the amalgam of this digital utopia I call Processing.org, take a minute to look at the other projects that are currently underway at the website.
The future is limitless.
Labels:
art,
arts,
multiples,
Processing,
Processing.org,
programming,
textile arts
Sunday, September 23, 2007
AVRDUDE and the AVRISPmkII
After much pain and mental anguish I have cracked through stage one of the AVRISP mkII programmer using AVRDUDE. Although many readers are thinking what are you jabbering about, this is a huge breakthrough for me and my AVR class on Thursday nights. In the spirit of GNU, FOSS, OSS, and other open initiatives I have decided to post my findings for others who wish to embark on the wonderful journey of AVR programming.
>$ sudo avrdude -c avrispmkII -p m168 -P usb:0000B0005522 -U hfuse:r:high.txt -U lfuse:r:low.txt
avrdude: AVR device initialized and ready to accept instructions
Reading | ################################################## | 100% 0.11s
avrdude: Device signature = 0x1e9406
avrdude: reading hfuse memory:
Reading | ################################################## | 100% 0.03s
avrdude: writing output file "high.txt"
the command line entry to access the AVRISP mkII through usb and print the fuse bits to files is:
sudo avrdude -c avrispmkII -p m168 -P usb:0000B0005522 -U hfuse:r:high.txt -U lfuse:r:low.txt
The next stage is programming the fuse bits, and the processor itself. More will follow.
>$ sudo avrdude -c avrispmkII -p m168 -P usb:0000B0005522 -U hfuse:r:high.txt -U lfuse:r:low.txt
avrdude: AVR device initialized and ready to accept instructions
Reading | ################################################## | 100% 0.11s
avrdude: Device signature = 0x1e9406
avrdude: reading hfuse memory:
Reading | ################################################## | 100% 0.03s
avrdude: writing output file "high.txt"
the command line entry to access the AVRISP mkII through usb and print the fuse bits to files is:
sudo avrdude -c avrispmkII -p m168 -P usb:0000B0005522 -U hfuse:r:high.txt -U lfuse:r:low.txt
The next stage is programming the fuse bits, and the processor itself. More will follow.
Friday, September 21, 2007
What a twist.
Well this project wins over all other projects I have seen this week. Nicola Tesla eat your heart out.
It's the Barbie Doll electric chair.
It's the Barbie Doll electric chair.
Thursday, September 20, 2007
Tolerance
Tolerance. Tonight a sliver of life was relinquished willingly. In order to understand intolerance. Perhaps there is a certain dearth of logic in such a task. That is to say trying to logically understand the illogical. To paraphrase, in the end the only thing that matters is whether you do or do not made a difference in the world.
What have you done?
Perhaps this gives us all the possibility to leverage a turning point. To critique our own intolerance in an attempt to gain more of what we lack. For we are all guilty parties to a larger or lesser extent.
What have you done?
Perhaps this gives us all the possibility to leverage a turning point. To critique our own intolerance in an attempt to gain more of what we lack. For we are all guilty parties to a larger or lesser extent.
Tuesday, September 18, 2007
War'ing Warhol's

Warhol how I love to hate you! Your multi-billion dollar glorious comodification of the art world. This object is so useless but holds such an important role. I still wonder why I carry it. Perhaps its obsessive. It hardly posses a burden on me.
Although I think of Ed Burtynsky's manufactured landscapes every time I look at it. How much waste resulted in your manufacturing, how marred is the landscape.
Oh how I hate this little object.
Subscribe to:
Posts (Atom)





