I&#39;m using a N810, but the problem of connecting a RS232 device is probably the same.<br><br>I&#39;m getting close to getting a RS232 connection working using Bluetooth and Python2.5. The code below is getting me close. I can receive RS232 string over Bluetooth using this code. I just can&#39;t seem to figure out how to send string out. If I try and use PySerial package I get an error when trying to open the port.<br>
<br>#! /usr/bin/env python2.5<br>import dbus<br>import time<br>import sys<br>import thread<br>#import serial<br><br>PortOpen = 0<br>ser = &quot;&quot;<br><br># =============================================================================<br>
def OpenPort ( COM_Port ):<br>&nbsp;&nbsp;&nbsp; global ser, PortOpen<br>&nbsp;&nbsp;&nbsp; try:<br>&nbsp;&nbsp;&nbsp; print &quot;Opening %s port&quot; % COM_Port<br>&nbsp;&nbsp;&nbsp; #ser = serial.Serial( COM_Port, 115200, timeout=0, parity=serial.PARITY_NONE, rtscts=0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ser = open( COM_Port, &#39;r+&#39; )<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PortOpen = 1<br>&nbsp;&nbsp;&nbsp; except:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;Error opening serial port.&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit()<br><br><br># =============================================================================<br>def CommThread ( tid ):<br>
&nbsp;&nbsp;&nbsp; &quot;&quot;&quot; This function is designed to be run as a thread task. &quot;&quot;&quot;<br>&nbsp;&nbsp;&nbsp; global gTID, PortOpen<br>&nbsp;&nbsp;&nbsp; gTID = tid<br>&nbsp;&nbsp;&nbsp; i = 0<br>&nbsp;&nbsp;&nbsp; while PortOpen:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; s = ser.readline( ).strip( &#39;\r\n&#39; )<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print s<br>&nbsp;&nbsp;&nbsp; print &quot;CommThread Ending %d&quot; % PortOpen<br><br>bus = dbus.SystemBus()<br>bmgr = dbus.Interface( bus.get_object(&#39;org.bluez&#39;, &#39;/org/bluez&#39;), &#39;org.bluez.Manager&#39;)<br>bus_id = bmgr.ActivateService(&#39;serial&#39;)<br>
serial = dbus.Interface(bus.get_object( bus_id, &#39;/org/bluez/serial&#39;), &#39;org.bluez.serial.Manager&#39;)<br><br># Service connection, read the serial API to check the available patterns<br>address = &quot;00:01:95:06:CF:88&quot;<br>
service = &quot;spp&quot;<br><br># Bind to the default local adapter<br>device = serial.ConnectService( address, service )<br>print &quot;Connected %s to %s&quot; % (device, address)<br><br>time.sleep(1)<br>OpenPort( device )<br>
thread.start_new( CommThread, (1234,) )<br><br>print &quot;Press CTRL-C to disconnect&quot;<br><br>while(1):<br>&nbsp;&nbsp;&nbsp; s = raw_input()<br>&nbsp;&nbsp;&nbsp; print &quot;Writting %s&quot; % s<br>&nbsp;&nbsp;&nbsp; ser.write(s)<br>&nbsp;&nbsp;&nbsp; ser.flush()<br><br>serial.DisconnectService(device)<br>
<br>