paresy/HomeKit

View on GitHub
HomeKitBridge/characteristics/supportedRTPConfiguration.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

class HAPCharacteristicSupportedRTPConfiguration extends HAPCharacteristic
{
    public function __construct()
    {
        parent::__construct(
            0x116,
            HAPCharacteristicFormat::TLV8,
            [
                HAPCharacteristicPermission::PairedRead
            ]
            /* Todo TLV8 encoded list of supported parameters */
        );
    }
}