
August 29th, 2012, 01:02 PM
|
|
Contributing User
|
|
Join Date: Dec 2004
Location: Regensburg, Germany
|
|
Without your code I can only guess what's wrong. From what I can detect from the error message you might be using the pybluez package. If so maybe the line
python Code:
Original
- python Code |
|
|
|
status = bt.bind (self._sockfd, addr, port)
should better read
python Code:
Original
- python Code |
|
|
|
status = bt.bind ((addr, port))
Try to understand the documentation for pyblues. Reading the examples for rfcomm server and client carefully may be helpful.
|