mirror of
				https://github.com/home-assistant/core.git
				synced 2025-11-04 08:29:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			443 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			443 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Support for SensorPro devices."""
 | 
						|
 | 
						|
from __future__ import annotations
 | 
						|
 | 
						|
from sensorpro_ble import DeviceKey
 | 
						|
 | 
						|
from homeassistant.components.bluetooth.passive_update_processor import (
 | 
						|
    PassiveBluetoothEntityKey,
 | 
						|
)
 | 
						|
 | 
						|
 | 
						|
def device_key_to_bluetooth_entity_key(
 | 
						|
    device_key: DeviceKey,
 | 
						|
) -> PassiveBluetoothEntityKey:
 | 
						|
    """Convert a device key to an entity key."""
 | 
						|
    return PassiveBluetoothEntityKey(device_key.key, device_key.device_id)
 |