SightAndSound-Roger

Results 11 comments of SightAndSound-Roger

I have noticed apple tv's not properly broadcasting their existence anymore after an update or terms change. Usually after clicking the "ok" or "continue" or whatever notice there is on...

So I've been looking into more logs and it looks like the input commands are passed through XPC? I've looked around and saw it pop up 2 or 3 times...

So I've been able to decode the _tiC event using the `nska_deserialize` library. I didn't seem to get it working with other libraries. ````python loaded = nska_deserialize.deserialize_plist_from_string(msg['_tiD']) input_string = ''...

@Fredde87 unfortunately not, I've been searching for the way to send strings but to no avail. I've tried polyfilling with separate hid commanda but that didn't work for special chars...

I have tried the MRP (over Airplay) route but that doesn't seem to work with the keyboard. Perhaps I've been doing something wrong?

Having the proxy would be a bliss, I've took a shot at fixing that too but failed miserably. I've implemented the keyboard before with C# and the regular MRP protocol,...

These are the logs that happen around text input (using the control center remote): **iOS** ![image](https://user-images.githubusercontent.com/66823809/180158783-b145d47b-3070-47bf-81b3-27af891a68e9.png) **tvOS** ![image](https://user-images.githubusercontent.com/66823809/180159591-7c8a9dc9-ff61-4ae2-b028-f7c567984baf.png) I'ts not much but perhaps it rings a bell for someone else.

tiD is some sort of NSKeyedArchive which I managed to deserialize with the nska_deserialize lib, however it appears that it's only feedback but looking at the logging it sort of...

I have actually sort of tried that, however I have not been certain the plist format I was sending was actually encoded any good. I haven't ran any deeper into...

HID commands are already in pyatv (see pyatv/protocols/companion/api.py def "hid_command") Here's the last stuff that I hacked in. ( I see I was sending HID over mrp since it looked...