J. Nick Koston

Results 1005 comments of J. Nick Koston

Good news. They found it and it's out for delivery. Unfortunately I won't be back home until the end of the month

@Djelibeybi debug logs for aiohomekit would be really helpful for when the pairing fails after https://github.com/Jc2k/aiohomekit/pull/137 is released I'm hoping to finish it today but ... Monday

https://github.com/home-assistant/core/pull/76488 is the PR to bump which will give us easier to read pairing logs

Can you post the TLVs (they are multi-line) `2022-08-09 17:34:25.846 DEBUG (MainThread) [aiohomekit.protocol.tlv] sending [` ... `2022-08-09 17:34:54.848 DEBUG (MainThread) [aiohomekit.protocol.tlv] receiving [`

Well 2 (Salt): (16 bytes/) 0x00000000000000000000000000000000 thats a problem

Either we have a bug in the TLV parser or the device is replying with a salt of all 0s.

Doesn't look like a bug in the TLV parser though

The device is advertising it has an apple coprocessor, but it might not. Pairing might work if we ask to pair without the coprocessor

Can you try disabling PairSetupWithAuth? https://github.com/Jc2k/aiohomekit/blob/652b55f7c911050a7304551a8c3fd882e1e5f914/aiohomekit/protocol/__init__.py#L113 ``` request_tlv = [ (TLV.kTLVType_State, TLV.M1), (TLV.kTLVType_Method, TLV.PairSetupWithAuth if with_auth else TLV.PairSetup), ] ``` replace with ``` request_tlv = [ (TLV.kTLVType_State, TLV.M1), (TLV.kTLVType_Method, TLV.PairSetup),...

Does this device actually pair with an iphone ?