Hi Luis, On Thu, 2011-03-03 at 19:12 +0000, Luis navarro del angel wrote: > Hi list, > > I have an interface made with arduino and I would like to know if > there is a way to connect this interface to fluxus via midi and osc. > One of my options is to connect it first to supercollider and then > supercollider to fluxus via osc. But I would like to connect the > interface direct to fluxus without passing over supercollider. Do you > have any idea about this?
We connected plants to fluxus while doing the groworld project, there is some code (scm and pde) here: http://gitorious.org/flotsam/flotsam/trees/master/groworld/game-prototypes/xylem/xylem_serial It's reading from the serial port and sending messages on to xmpp (jabber) which you can strip out. It's basically just: (define serial (open-input-file "/dev/tty.usbserial-A9007Lgy")) Which you need to point at the serial device you can find in the processing ide, and reading it with: (read-line serial) cheers, dave
