View Single Post
Posts: 88 | Thanked: 63 times | Joined on Feb 2008 @ Solingen; Germany
#33
Sure this could maybe not be the right place for asking that, but which output did you get when connecting the ELM327 device via serial connection?
Need the information to make my modules compatible to other devices.

Here is how to connect to your device using hcitool and python using pybluez:
1. Find out which bluetooth address your adapter has
Code:
hcitool scan
2. Launch the python console
Code:
python
3. import the pybluez modules
Code:
import bluetooth
3. create a bluetooth rfcomm socket
Code:
sock=bluetooth.BluetoothSocket( bluetooth.RFCOMM )
sock.connect((<btaddr>, 1))
4. get the message from the socket
Code:
sock.recv(2048)
5. close the connection
Code:
sock.close()
I expect something like: "\r\rELM327 v1.4\r\r>"
Can you confirm this?
 

The Following User Says Thank You to thopiekar For This Useful Post: