You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
425 B

"""Discover Xbox SmartGlass devices."""
from . import BaseDiscoverable
class Discoverable(BaseDiscoverable):
"""Add support for discovering a Xbox SmartGlass device."""
def __init__(self, netdis):
"""Initialize the Xbox SmartGlass discovery."""
self._netdis = netdis
def get_entries(self):
"""Get all the Xbox SmartGlass details."""
return self._netdis.xbox_smartglass.entries