Files
Robotics-at-Home-with-Raspb…/ch-13/1-modelling-space/computer/find_devices.py
T
2022-11-03 14:16:08 +00:00

9 lines
172 B
Python

import asyncio
from robot_ble_connection import BleConnection
async def run():
ble_connection = BleConnection()
await ble_connection.connect()
asyncio.run(run())