aboutsummaryrefslogtreecommitdiff
path: root/mmi2grpc/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'mmi2grpc/__init__.py')
-rw-r--r--mmi2grpc/__init__.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/mmi2grpc/__init__.py b/mmi2grpc/__init__.py
new file mode 100644
index 0000000..dac3702
--- /dev/null
+++ b/mmi2grpc/__init__.py
@@ -0,0 +1,27 @@
+import grpc
+from . import a2dp
+
+from blueberry.host_grpc import Host
+
+GRPC_PORT = 8999
+
+
+def run(profile: str, interaction_id: str, test: str, pts_addr: bytes):
+ channel = grpc.insecure_channel(f'localhost:{GRPC_PORT}')
+ print(f'{profile} mmi: {interaction_id}')
+ if profile == "A2DP":
+ a2dp.interact(channel, interaction_id, test, pts_addr)
+ channel.close()
+
+
+def reset():
+ channel = grpc.insecure_channel(f'localhost:{GRPC_PORT}')
+ Host(channel).Reset(wait_for_ready=True)
+ channel.close()
+
+
+def read_local_address() -> bytes:
+ channel = grpc.insecure_channel(f'localhost:{GRPC_PORT}')
+ bluetooth_address = Host(channel).ReadLocalAddress(wait_for_ready=True)
+ channel.close()
+ return bluetooth_address.address