HuJohner / homebridge-appletv

Apache License 2.0
22 stars 7 forks source link

Homebridge Apple TV

This is a Homebridge plugin that exposes Apple TVs to HomeKit, noteably the power state as a switch and optionally the device state (playing, paused, etc.) as motion sensors.

Installation

To make this plugin work you need to install PyATV. To ensure you did it right run

atvremote --version

Configuration

Configuration can be done using Homebridge Config UI X.

Sample Configuration

{
    "platform": "AppleTV",
    "devices": [
        {
            "name": "Living Room",
            "host": "192.168.0.36",
            "credentials": "...",
            "device_state_sensors": [
                "idle",
                "paused",
                "playing"
            ],
            "app_sensors": [
                "Netflix",
                "Disney+"
            ],
            "generic_sensors": [
                {
                    "property": "mediaType",
                    "values": [
                        "music",
                        "tv",
                        "video",
                        "unknown"
                    ]
                },
                {
                    "property": "genre",
                    "values": [
                        "Pop"
                    ]
                }
            ]
        }
    ]
}

Configuration Definition

Retrieving credentials

In order to retrieve credentials for your Apple TV, please follow these step

  1. Execute the following command to scan for Apple TVs:
atvremote scan
  1. Choose the device with which you would like to pair and run the following command:
atvremote -s {YOUR-APPLE-ID-IP-ADDRESS} --protocol companion pair
  1. Enter the PIN shown on your device.