tychovrahe/T3W1/devkit1_with_ble
tychovrahe 10 months ago
parent 5ff47ca507
commit 69b4121e8c

@ -99,6 +99,7 @@ def disconnect_device(client: "TrezorClient") -> None:
click.echo(f"Disconnect failed: {e}")
sys.exit(3)
@cli.command()
@click.option("--device", is_flag=True, help="Disconnect from device side.")
def disconnect(device: bool) -> None:

@ -218,10 +218,14 @@ class BleAsync:
return
ble_device = self.devices[self.current]
if ble_device.connected:
LOG.info("Disconnecting from %s (%s)..." % (ble_device.name, ble_device.address))
LOG.info(
"Disconnecting from %s (%s)..." % (ble_device.name, ble_device.address)
)
await ble_device.disconnect()
else:
LOG.info("Disconnected from %s (%s)." % (ble_device.name, ble_device.address))
LOG.info(
"Disconnected from %s (%s)." % (ble_device.name, ble_device.address)
)
self.current = None
self.rx = None
self.tx = None

Loading…
Cancel
Save