1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#!/usr/bin/python
from __future__ import absolute_import, print_function, unicode_literals
from optparse import OptionParser, make_option
import sys
import time
import dbus
import bluezutils
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object("org.bluez", "/"),
"org.bluez.Manager")
option_list = [
make_option("-i", "--device", action="store",
type="string", dest="dev_id"),
]
parser = OptionParser(option_list=option_list)
(options, args) = parser.parse_args()
if (len(args) < 1):
print("Usage: %s <address> [service]" % (sys.argv[0]))
sys.exit(1)
# Fix-up in case of "connect" invocation that other scripts use
if args[0] == "connect":
del args[:1]
if (len(args) < 2):
service = "panu"
else:
service = args[1]
device = bluezutils.find_device(args[0], options.dev_id)
network = dbus.Interface(bus.get_object("org.bluez", device.object_path),
"org.bluez.Network1")
iface = network.Connect(service)
print("Connected to %s service %s, interface %s" % (args[0], service, iface))
print("Press CTRL-C to disconnect")
try:
time.sleep(1000)
print("Terminating connection")
except:
pass
network.Disconnect()
|