For anyone interested, the Fusion Brain v6 used in Ubuntu (I'm v10.10) (Linux) doesn't need any configuration. Plug it in and the virtual serial port is recognized, not as /dev/tty0 or others, but as /dev/ttyACM0 or similar. This is an almost generic, but specialized serial port connection.
To issue commands, open a terminal and type (assuming ttyACM
0):
Code:
echo *IDN? > /dev/ttyACM0
You should see the information display
To turn port 0 on:
Code:
echo D:00:255 > /dev/ttyACM0
or get the analog signals:
in one console:
and in another:
Code:
echo aa? > /dev/ttyACM0
(yes, a? A? aa? and AA? are all different commands, try them out :)
connection speeds vary each time the device is plugged in. That said, unless you're changing all 30 ports every tenth of a second the slower speed is still pretty quick.
I wrote a few sample scripts to control the outputs, but you'll have to make them executable
Code:
chmod a+x light*.txt