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.
Home-AssistantConfig/deps/netdisco/discoverables/google_cast.py

12 lines
392 B

"""Discover devices that implement the Google Cast platform."""
from . import MDNSDiscoverable
# pylint: disable=too-few-public-methods
class Discoverable(MDNSDiscoverable):
"""Add support for discovering Google Cast platform devices."""
def __init__(self, nd):
"""Initialize the Cast discovery."""
super(Discoverable, self).__init__(nd, '_googlecast._tcp.local.')

Powered by TurnKey Linux.