meshcore_py/examples/ble_t1000_infos.py
2025-03-30 08:36:39 +02:00

18 lines
290 B
Python
Executable file

#!/usr/bin/python
import asyncio
from meshcore import MeshCore
from meshcore import BLEConnection
ADDRESS = "t1000"
async def main () :
con = BLEConnection(ADDRESS)
await con.connect()
mc = MeshCore(con)
await mc.connect()
print(mc.self_info)
asyncio.run(main())