On Tue, 2007-02-20 at 01:34 +0100, media.gambler wrote:

> [comport] opened serial line device 1 (/dev/tty.Bluetooth-PDA-Sync)
>  - is this already wrong? is that the correct type of connection?

donĀ“t know pduino at all, but just in case, if you are planning to use comport object with arduino or any other serial device, open your shell and type:

[code]i=0; for f in `ls /dev/tty.*`; do echo $i $f; i=$(( $i + 1 )); done[/code]

which will list all your tty devices and serial line numbers.

/gordo