{% extends 'base.html' %} {% block header %}

{% block title %}HomeKit Pairing {% endblock %}

{% endblock %} {% block content %}

To connect your Home to the vehciles managed by CarConenctivity please scan the following QR Code with the Home App on your smartphone.

You can also manually add the Bridge {{ homekit_plugin._driver.accessory.display_name }} with the Passcode: {{ homekit_plugin._driver.state.pincode.decode('utf8') }}

Status:

{{ form.csrf_token }} The bridge is currently {{ 'paired' if homekit_plugin._driver.state.paired else 'unpaired' }}
{{ form.unpair(disabled=(not homekit_plugin._driver.state.paired)) }}

{% endblock %}