mirror of
https://github.com/meshcore-dev/meshcore-cli.git
synced 2026-04-20 22:13:48 +00:00
don't even want to tell what was wrong, see for yourself
This commit is contained in:
parent
aa0a8d2798
commit
f1f5b114c0
2 changed files with 3 additions and 3 deletions
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "meshcore-cli"
|
||||
version = "1.1.14"
|
||||
version = "1.1.15"
|
||||
authors = [
|
||||
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
|
||||
]
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ from prompt_toolkit.shortcuts import radiolist_dialog
|
|||
from meshcore import MeshCore, EventType, logger
|
||||
|
||||
# Version
|
||||
VERSION = "v1.1.13"
|
||||
VERSION = "v1.1.15"
|
||||
|
||||
# default ble address is stored in a config file
|
||||
MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/"
|
||||
|
|
@ -2219,7 +2219,7 @@ async def main(argv):
|
|||
client = None
|
||||
if device or address and len(address.split(":")) == 6 :
|
||||
pass
|
||||
elif address and len(address) == 36 and len(address.split("-") == 5):
|
||||
elif address and len(address) == 36 and len(address.split("-")) == 5:
|
||||
client = BleakClient(address) # mac uses uuid, we'll pass a client
|
||||
else:
|
||||
logger.info(f"Scanning BLE for device matching {address}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue