tesla-fleet-api 1.0.9__py3-none-any.whl → 1.0.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tesla_fleet_api/const.py +1 -1
- tesla_fleet_api/tesla/vehicle/bluetooth.py +35 -0
- tesla_fleet_api/tesla/vehicle/vehicle.py +2 -0
- tesla_fleet_api/tesla/vehicle/vehicles.py +29 -1
- {tesla_fleet_api-1.0.9.dist-info → tesla_fleet_api-1.0.10.dist-info}/METADATA +1 -1
- {tesla_fleet_api-1.0.9.dist-info → tesla_fleet_api-1.0.10.dist-info}/RECORD +9 -9
- {tesla_fleet_api-1.0.9.dist-info → tesla_fleet_api-1.0.10.dist-info}/LICENSE +0 -0
- {tesla_fleet_api-1.0.9.dist-info → tesla_fleet_api-1.0.10.dist-info}/WHEEL +0 -0
- {tesla_fleet_api-1.0.9.dist-info → tesla_fleet_api-1.0.10.dist-info}/top_level.txt +0 -0
tesla_fleet_api/const.py
CHANGED
@@ -65,6 +65,8 @@ SERVICE_UUID = "00000211-b2d1-43f0-9b88-960cebf8b91e"
|
|
65
65
|
WRITE_UUID = "00000212-b2d1-43f0-9b88-960cebf8b91e"
|
66
66
|
READ_UUID = "00000213-b2d1-43f0-9b88-960cebf8b91e"
|
67
67
|
VERSION_UUID = "00000214-b2d1-43f0-9b88-960cebf8b91e"
|
68
|
+
NAME_UUID = "00002a00-0000-1000-8000-00805f9b34fb"
|
69
|
+
APPEARANCE_UUID = "00002a01-0000-1000-8000-00805f9b34fb"
|
68
70
|
|
69
71
|
if TYPE_CHECKING:
|
70
72
|
from tesla_fleet_api.tesla.tesla import Tesla
|
@@ -216,6 +218,39 @@ class VehicleBluetooth(Commands):
|
|
216
218
|
if resp.HasField(requires):
|
217
219
|
return resp
|
218
220
|
|
221
|
+
async def query_display_name(self, max_attempts=5) -> str | None:
|
222
|
+
"""Read the device name via GATT characteristic if available"""
|
223
|
+
for i in range(max_attempts):
|
224
|
+
try:
|
225
|
+
# Standard GATT Device Name characteristic (0x2A00)
|
226
|
+
device_name = (await self.client.read_gatt_char(NAME_UUID)).decode('utf-8')
|
227
|
+
if device_name.startswith("🔑 "):
|
228
|
+
return device_name.replace("🔑 ","")
|
229
|
+
await asyncio.sleep(1)
|
230
|
+
LOGGER.debug(f"Attempt {i+1} to query display name failed, {device_name}")
|
231
|
+
except Exception as e:
|
232
|
+
LOGGER.error(f"Failed to read device name: {e}")
|
233
|
+
|
234
|
+
async def query_appearance(self) -> bytearray | None:
|
235
|
+
"""Read the device appearance via GATT characteristic if available"""
|
236
|
+
try:
|
237
|
+
# Standard GATT Appearance characteristic (0x2A01)
|
238
|
+
return await self.client.read_gatt_char(APPEARANCE_UUID)
|
239
|
+
except Exception as e:
|
240
|
+
LOGGER.error(f"Failed to read device appearance: {e}")
|
241
|
+
return None
|
242
|
+
|
243
|
+
async def query_version(self) -> int | None:
|
244
|
+
"""Read the device version via GATT characteristic if available"""
|
245
|
+
try:
|
246
|
+
# Custom GATT Version characteristic (0x2A02)
|
247
|
+
device_version = await self.client.read_gatt_char(VERSION_UUID)
|
248
|
+
# Convert the bytes to an integer
|
249
|
+
if device_version and len(device_version) > 0:
|
250
|
+
return int.from_bytes(device_version, byteorder='big')
|
251
|
+
except Exception as e:
|
252
|
+
LOGGER.error(f"Failed to read device version: {e}")
|
253
|
+
return None
|
219
254
|
|
220
255
|
async def pair(self, role: Role = Role.ROLE_OWNER, form: KeyFormFactor = KeyFormFactor.KEY_FORM_FACTOR_CLOUD_KEY, timeout: int = 60):
|
221
256
|
"""Pair the key."""
|
@@ -1,12 +1,16 @@
|
|
1
1
|
from __future__ import annotations
|
2
|
+
import asyncio
|
2
3
|
from typing import TYPE_CHECKING
|
4
|
+
from bleak import BleakClient
|
3
5
|
from bleak.backends.device import BLEDevice
|
6
|
+
from bleak_retry_connector import establish_connection
|
4
7
|
from cryptography.hazmat.primitives.asymmetric import ec
|
5
8
|
|
6
9
|
from tesla_fleet_api.tesla.vehicle.signed import VehicleSigned
|
7
|
-
from tesla_fleet_api.tesla.vehicle.bluetooth import VehicleBluetooth
|
10
|
+
from tesla_fleet_api.tesla.vehicle.bluetooth import NAME_UUID, VehicleBluetooth
|
8
11
|
from tesla_fleet_api.tesla.vehicle.fleet import VehicleFleet
|
9
12
|
from tesla_fleet_api.tesla.vehicle.vehicle import Vehicle
|
13
|
+
from tesla_fleet_api.const import LOGGER
|
10
14
|
|
11
15
|
if TYPE_CHECKING:
|
12
16
|
from tesla_fleet_api.tesla.fleet import TeslaFleetApi
|
@@ -69,3 +73,27 @@ class VehiclesBluetooth(dict[str, Vehicle]):
|
|
69
73
|
vehicle = self.Bluetooth(self._parent, vin, key, device)
|
70
74
|
self[vin] = vehicle
|
71
75
|
return vehicle
|
76
|
+
|
77
|
+
async def query_display_name(self, device: BLEDevice, max_attempts=5) -> str | None:
|
78
|
+
"""Queries the name of a bluetooth vehicle."""
|
79
|
+
client = await establish_connection(
|
80
|
+
BleakClient,
|
81
|
+
device,
|
82
|
+
device.name or "Unknown",
|
83
|
+
max_attempts=max_attempts
|
84
|
+
)
|
85
|
+
name: str | None = None
|
86
|
+
for i in range(max_attempts):
|
87
|
+
try:
|
88
|
+
# Standard GATT Device Name characteristic (0x2A00)
|
89
|
+
device_name = (await client.read_gatt_char(NAME_UUID)).decode('utf-8')
|
90
|
+
if device_name.startswith("🔑 "):
|
91
|
+
name = device_name.replace("🔑 ","")
|
92
|
+
break
|
93
|
+
await asyncio.sleep(1)
|
94
|
+
LOGGER.debug(f"Attempt {i+1} to query display name failed, {device_name}")
|
95
|
+
except Exception as e:
|
96
|
+
LOGGER.error(f"Failed to read device name: {e}")
|
97
|
+
|
98
|
+
await client.disconnect()
|
99
|
+
return name
|
@@ -1,5 +1,5 @@
|
|
1
1
|
tesla_fleet_api/__init__.py,sha256=3DZMoZ-5srW-7SooAjqcRubQDuZPY8rMKH7eqIp4qtg,392
|
2
|
-
tesla_fleet_api/const.py,sha256=
|
2
|
+
tesla_fleet_api/const.py,sha256=iX1zonX_WX3NYpR_I9RAoVx3eM2iLHQjSD8C3QcBdTk,3749
|
3
3
|
tesla_fleet_api/exceptions.py,sha256=GvjJBR77xGt2g3vhiAxcNtysj-e1Me7F-9PwO9dyzOo,35430
|
4
4
|
tesla_fleet_api/ratecalculator.py,sha256=4lz8yruUeouHXh_3ezsXX-CTpIegp1T1J4VuRV_qdHA,1791
|
5
5
|
tesla_fleet_api/tesla/__init__.py,sha256=Cvpqu8OaOFmbuwu9KjgYrje8eVluDp2IU_zwdtXbmO0,282
|
@@ -12,12 +12,12 @@ tesla_fleet_api/tesla/partner.py,sha256=e-l6sEP6-IupjFEQieSUjhhvRXF3aL4ebPNahcGF
|
|
12
12
|
tesla_fleet_api/tesla/tesla.py,sha256=Gs8-L3OsEMhs1N_vdDx-E46bOHKGowXTBxmRiP8NKh4,2391
|
13
13
|
tesla_fleet_api/tesla/user.py,sha256=w8rwiAOIFjuDus8M0RpZ0wucJtw8kYFKtJfYVk7Ekr0,1194
|
14
14
|
tesla_fleet_api/tesla/vehicle/__init__.py,sha256=3A5_wTQHofRShof4pUNOtF78-7lUh62uz2jq2ecnmRY,381
|
15
|
-
tesla_fleet_api/tesla/vehicle/bluetooth.py,sha256=
|
15
|
+
tesla_fleet_api/tesla/vehicle/bluetooth.py,sha256=CJgyE99Q4ezWjDjEaRD5hA6_-bHPpztXXdQcKQh9GZ0,18334
|
16
16
|
tesla_fleet_api/tesla/vehicle/commands.py,sha256=_LXAtuAIkeojJuw8k1QjEabAQQH2MLD5YZyUH58QoSg,51288
|
17
17
|
tesla_fleet_api/tesla/vehicle/fleet.py,sha256=K9BVZj6CChJSDSMFroa7Cz0KrsYWj32ILtQumarkLaU,32080
|
18
18
|
tesla_fleet_api/tesla/vehicle/signed.py,sha256=RUzVnZIfykz3YZW2gaxd1iaN1i8LkLaEoiXrbqZn9kg,1339
|
19
|
-
tesla_fleet_api/tesla/vehicle/vehicle.py,sha256=
|
20
|
-
tesla_fleet_api/tesla/vehicle/vehicles.py,sha256=
|
19
|
+
tesla_fleet_api/tesla/vehicle/vehicle.py,sha256=IBvRO6qGkUf4bi-pFongA9fIe9iScvz_wGXtzEJXilY,870
|
20
|
+
tesla_fleet_api/tesla/vehicle/vehicles.py,sha256=jLE_T_fWEwFjuYU5_AlJ0KhEvWAPx2wybENESksJ2R8,3777
|
21
21
|
tesla_fleet_api/tesla/vehicle/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
tesla_fleet_api/tesla/vehicle/proto/__init__.pyi,sha256=qFXWNIgl71wB260u-XPzaAwWAHL6krw21q-aXnBtop0,252
|
23
23
|
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.py,sha256=v_eb4NDIkx_ZYPYW29_EFRky5vQ4b2q14gwuQSbouYw,29202
|
@@ -44,8 +44,8 @@ tesla_fleet_api/teslemetry/vehicles.py,sha256=9nybVg7VHKLa2woMG6fzMmQP6xJIE_jdAd
|
|
44
44
|
tesla_fleet_api/tessie/__init__.py,sha256=9lhQJaB6X4PObUL9QdaaZYqs2BxiTidu3zmHcBESLVw,78
|
45
45
|
tesla_fleet_api/tessie/tessie.py,sha256=uhg0oOIxpwDvlvdBhKHeF3AGR2PzmdBgzh2-_EkmSq0,2617
|
46
46
|
tesla_fleet_api/tessie/vehicles.py,sha256=gfEatilI_ct-R4CM5xYhrlduqCR9IHlyc56WmJf7v7k,1149
|
47
|
-
tesla_fleet_api-1.0.
|
48
|
-
tesla_fleet_api-1.0.
|
49
|
-
tesla_fleet_api-1.0.
|
50
|
-
tesla_fleet_api-1.0.
|
51
|
-
tesla_fleet_api-1.0.
|
47
|
+
tesla_fleet_api-1.0.10.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
48
|
+
tesla_fleet_api-1.0.10.dist-info/METADATA,sha256=Dr_QRBUiyoZ4PUgBBipQkoTBbqxW7qtE-vJ9GxzY8io,4383
|
49
|
+
tesla_fleet_api-1.0.10.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
50
|
+
tesla_fleet_api-1.0.10.dist-info/top_level.txt,sha256=jeNbog_1saXBFrGpom9WyPWmilxsyP3szL_G7JLWQfM,16
|
51
|
+
tesla_fleet_api-1.0.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|