473,379 Members | 1,542 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

finding bluetooth serial port

To automate/ease configuration in my app I am trying to find out to
which serial port a certain bluetooth device is connected. With pybluez
I can find out which bluetooth devices I have, but it will not tell me
the serial port they are mapped to.

Is there a way to figure this out from python? (I am insterested in the
platforms WinXP and linux primarily)

Paul Sijben
Nov 7 '07 #1
2 6996
On 2007-11-07, Paul Sijben <pa*********@xs4all.nlwrote:
To automate/ease configuration in my app I am trying to find
out to which serial port a certain bluetooth device is
connected. With pybluez I can find out which bluetooth devices
I have, but it will not tell me the serial port they are
mapped to.

Is there a way to figure this out from python? (I am
insterested in the platforms WinXP and linux primarily)
Under linux, the "right" thing to do is to write a udev rule so
that the device has a predictiable name (or symlink).

http://reactivated.net/writing_udev_rules.html

If you don't want to write a udev rule, you'll need to bascally
re-implement udev by parsing the sysfs directory tree until you
find the device you're looking for. Here's how to do it for USB
(I assume BT works in a similar fashion).

Let's say I know the device has vendor ID 0403, product ID
6001, and serial number 123456.

I search through the directories under /sys/devices until I
find a directory containing three files named

idProduct
idVendor
serial

Which contain the three strings I'm looking for.

In this case:

# cat /sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/idVendor
0403
# cat /sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/idProduct
6001
# cat /sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/serial
12345678

Once you've found that directory, you can look at the other
entries to find out whatever you want to know about the device:

/sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/
|-- 5-1:1.0
| |-- bAlternateSetting
| |-- bInterfaceClass
| |-- bInterfaceNumber
| |-- bInterfaceProtocol
| |-- bInterfaceSubClass
| |-- bNumEndpoints
| |-- bus -../../../../../../bus/usb
| |-- driver -../../../../../../bus/usb/drivers/ftdi_sio
| |-- ep_02 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep02
| |-- ep_81 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep81
| |-- interface
| |-- modalias
| |-- power
| | |-- state
| | `-- wakeup
| |-- subsystem -../../../../../../bus/usb
| |-- ttyUSB0
| | |-- bus -../../../../../../../bus/usb-serial
| | |-- driver -../../../../../../../bus/usb-serial/drivers/ftdi_sio
| | |-- power
| | | |-- state
| | | `-- wakeup
| | |-- subsystem -../../../../../../../bus/usb-serial
| | |-- tty:ttyUSB0 -../../../../../../../class/tty/ttyUSB0
| | `-- uevent
| |-- uevent
| |-- usb_endpoint:usbdev5.42_ep02 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep02
| |-- usb_endpoint:usbdev5.42_ep81 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep81
| |-- usbdev5.42_ep02
| | |-- bEndpointAddress
| | |-- bInterval
| | |-- bLength
| | |-- bmAttributes
| | |-- dev
| | |-- device -../../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0
| | |-- direction
| | |-- interval
| | |-- power
| | | |-- state
| | | `-- wakeup
| | |-- subsystem -../../../../../../../class/usb_endpoint
| | |-- type
| | |-- uevent
| | `-- wMaxPacketSize
| `-- usbdev5.42_ep81
| |-- bEndpointAddress
| |-- bInterval
| |-- bLength
| |-- bmAttributes
| |-- dev
| |-- device -../../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0
| |-- direction
| |-- interval
| |-- power
| | |-- state
| | `-- wakeup
| |-- subsystem -../../../../../../../class/usb_endpoint
| |-- type
| |-- uevent
| `-- wMaxPacketSize
|-- bConfigurationValue
|-- bDeviceClass
|-- bDeviceProtocol
|-- bDeviceSubClass
|-- bMaxPacketSize0
|-- bMaxPower
|-- bNumConfigurations
|-- bNumInterfaces
|-- bcdDevice
|-- bmAttributes
|-- bus -../../../../../bus/usb
|-- configuration
|-- devnum
|-- driver -../../../../../bus/usb/drivers/usb
|-- ep_00 -../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/usbdev5.42_ep00
|-- event_char
|-- idProduct
|-- idVendor
|-- manufacturer
|-- maxchild
|-- power
| |-- state
| `-- wakeup
|-- product
|-- serial
|-- speed
|-- subsystem -../../../../../bus/usb
|-- uevent
|-- usb_device:usbdev5.42 -../../../../../class/usb_device/usbdev5.42
|-- usb_endpoint:usbdev5.42_ep00 -../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/usbdev5.42_ep00
|-- usbdev5.42_ep00
| |-- bEndpointAddress
| |-- bInterval
| |-- bLength
| |-- bmAttributes
| |-- dev
| |-- device -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1
| |-- direction
| |-- interval
| |-- power
| | |-- state
| | `-- wakeup
| |-- subsystem -../../../../../../class/usb_endpoint
| |-- type
| |-- uevent
| `-- wMaxPacketSize
`-- version
If you want to search by something other than the product id,
vendor id and serial number, then pick some other of the files
above that will have identifiable contents and look for that.

--
Grant Edwards grante Yow! We just joined the
at civil hair patrol!
visi.com
Nov 7 '07 #2
thanks very much!
Grant Edwards wrote:
On 2007-11-07, Paul Sijben <pa*********@xs4all.nlwrote:
>To automate/ease configuration in my app I am trying to find
out to which serial port a certain bluetooth device is
connected. With pybluez I can find out which bluetooth devices
I have, but it will not tell me the serial port they are
mapped to.

Is there a way to figure this out from python? (I am
insterested in the platforms WinXP and linux primarily)

Under linux, the "right" thing to do is to write a udev rule so
that the device has a predictiable name (or symlink).

http://reactivated.net/writing_udev_rules.html

If you don't want to write a udev rule, you'll need to bascally
re-implement udev by parsing the sysfs directory tree until you
find the device you're looking for. Here's how to do it for USB
(I assume BT works in a similar fashion).

Let's say I know the device has vendor ID 0403, product ID
6001, and serial number 123456.

I search through the directories under /sys/devices until I
find a directory containing three files named

idProduct
idVendor
serial

Which contain the three strings I'm looking for.

In this case:

# cat /sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/idVendor
0403
# cat /sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/idProduct
6001
# cat /sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/serial
12345678

Once you've found that directory, you can look at the other
entries to find out whatever you want to know about the device:

/sys/devices/pci0000:00/0000:00:10.3/usb5/5-1/
|-- 5-1:1.0
| |-- bAlternateSetting
| |-- bInterfaceClass
| |-- bInterfaceNumber
| |-- bInterfaceProtocol
| |-- bInterfaceSubClass
| |-- bNumEndpoints
| |-- bus -../../../../../../bus/usb
| |-- driver -../../../../../../bus/usb/drivers/ftdi_sio
| |-- ep_02 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep02
| |-- ep_81 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep81
| |-- interface
| |-- modalias
| |-- power
| | |-- state
| | `-- wakeup
| |-- subsystem -../../../../../../bus/usb
| |-- ttyUSB0
| | |-- bus -../../../../../../../bus/usb-serial
| | |-- driver -../../../../../../../bus/usb-serial/drivers/ftdi_sio
| | |-- power
| | | |-- state
| | | `-- wakeup
| | |-- subsystem -../../../../../../../bus/usb-serial
| | |-- tty:ttyUSB0 -../../../../../../../class/tty/ttyUSB0
| | `-- uevent
| |-- uevent
| |-- usb_endpoint:usbdev5.42_ep02 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep02
| |-- usb_endpoint:usbdev5.42_ep81 -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0/usbdev5.42_ep81
| |-- usbdev5.42_ep02
| | |-- bEndpointAddress
| | |-- bInterval
| | |-- bLength
| | |-- bmAttributes
| | |-- dev
| | |-- device -../../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0
| | |-- direction
| | |-- interval
| | |-- power
| | | |-- state
| | | `-- wakeup
| | |-- subsystem -../../../../../../../class/usb_endpoint
| | |-- type
| | |-- uevent
| | `-- wMaxPacketSize
| `-- usbdev5.42_ep81
| |-- bEndpointAddress
| |-- bInterval
| |-- bLength
| |-- bmAttributes
| |-- dev
| |-- device -../../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/5-1:1.0
| |-- direction
| |-- interval
| |-- power
| | |-- state
| | `-- wakeup
| |-- subsystem -../../../../../../../class/usb_endpoint
| |-- type
| |-- uevent
| `-- wMaxPacketSize
|-- bConfigurationValue
|-- bDeviceClass
|-- bDeviceProtocol
|-- bDeviceSubClass
|-- bMaxPacketSize0
|-- bMaxPower
|-- bNumConfigurations
|-- bNumInterfaces
|-- bcdDevice
|-- bmAttributes
|-- bus -../../../../../bus/usb
|-- configuration
|-- devnum
|-- driver -../../../../../bus/usb/drivers/usb
|-- ep_00 -../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/usbdev5.42_ep00
|-- event_char
|-- idProduct
|-- idVendor
|-- manufacturer
|-- maxchild
|-- power
| |-- state
| `-- wakeup
|-- product
|-- serial
|-- speed
|-- subsystem -../../../../../bus/usb
|-- uevent
|-- usb_device:usbdev5.42 -../../../../../class/usb_device/usbdev5.42
|-- usb_endpoint:usbdev5.42_ep00 -../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1/usbdev5.42_ep00
|-- usbdev5.42_ep00
| |-- bEndpointAddress
| |-- bInterval
| |-- bLength
| |-- bmAttributes
| |-- dev
| |-- device -../../../../../../devices/pci0000:00/0000:00:10.3/usb5/5-1
| |-- direction
| |-- interval
| |-- power
| | |-- state
| | `-- wakeup
| |-- subsystem -../../../../../../class/usb_endpoint
| |-- type
| |-- uevent
| `-- wMaxPacketSize
`-- version
If you want to search by something other than the product id,
vendor id and serial number, then pick some other of the files
above that will have identifiable contents and look for that.
Nov 8 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Helge Jensen | last post by:
Having posted in microsoft.public.dotnet.framework.sdk and microsoft.public.dotnet.framework.wmi without receiving any response, I posthere on the off-chance that someone who isn't following those...
2
by: Alvin Lau | last post by:
Can I write pocket PC bluetooth program by using C# ? It seems so difficult to find the library? If it is possible , where can i find the reference of these kind of program ? *** Sent via...
1
by: Nathan Young | last post by:
Hello. I have a .net application that utilizes COM ports to communicate with serial devices (namely a GPS). This may not be the right group for this question, but bear with me as I am not sure...
1
by: henrycortezwu | last post by:
Hi All, I'm trying to connect to a virtual port (COM19, OUTGOING, "Bluetooth Serial Port") using VS2005 System.IO.Ports. When I ran the ff code below here's what happens. 1) VS2005 Compiles w/o...
4
by: Boki | last post by:
Hi All, I am going to use some Bluetotoh API, should I include some special DLL or just call it directly? Best regards, Boki.
2
by: colin | last post by:
Hi, Im having a tiresome amount of trouble with using a bluetooth serial link. The receiving end is a bluetooth-rs232 module conected to my embeded system. The PC has a little usb bluetooth...
2
by: Dave Harry | last post by:
I'm using the following code to determine the available serial ports: ComboBoxPort.Items.Clear() For Each sp As String In My.Computer.Ports.SerialPortNames ComboBoxPort.Items.Add(sp) Next It...
1
by: arthurclucas | last post by:
Hi everyone, I'm have two iPac Devices and I'm trying send some bytes from one to another via Bluetooth communication. I use the CreateFile command to send the data and the ReadFile command to...
0
by: lakshmiRam | last post by:
hi i have a code which was supposed to read data from serial com (bluetooth) and save in a file. but when i send a audio file from my mobile to pc the program will not read the port i have ...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.