From: travisutk Date: Wed, 31 Aug 2011 16:14:39 +0000 (+0000) Subject: Port number instructions for Bluetooth. X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=670d14e88094aa5230087cacc420db1381711432 Port number instructions for Bluetooth. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1046 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/GoodFET.py b/client/GoodFET.py index 1caad81..8c5d945 100755 --- a/client/GoodFET.py +++ b/client/GoodFET.py @@ -52,7 +52,7 @@ class GoodFETbtser: """py-bluez class for emulating py-serial.""" def __init__(self,btaddr): import bluetooth; - while btaddr==None or btaddr=="none" or btaddr=="bluetooth": + if btaddr==None or btaddr=="none" or btaddr=="bluetooth": print "performing inquiry..." nearby_devices = bluetooth.discover_devices(lookup_names = True) print "found %d devices" % len(nearby_devices) @@ -60,10 +60,11 @@ class GoodFETbtser: print " %s - '%s'" % (addr, name) if name=='FireFly-A6BD': btaddr=addr; + print "Please set $GOODFET to the address of your device."; + sys.exit(); print "Identified GoodFET at %s" % btaddr; - # BlueFET doesn't run the Service Discovery Protocol. - # Instead we manually use the portnumber. + # Manually use the portnumber. port=1; print "Connecting to %s on port %i." % (btaddr, port);