You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is it possible to get all characteristics sent in one event done by a scene from iOS device?
I want to queue all events to send less requests and bundle them.
I see this in the logs after a calling a scene within two lightbulbs: 2022-03-01 06:09:55,570 pyhap.hap_handler.handle_set_characteristics : DEBUG [61998] ('10.11.12.133', 59955): Set characteristics content: {'characteristics': [{'aid': 2863159884, 'iid': 9, 'value': 1}, {'aid': 3277573387, 'iid': 9, 'value': 1}, {'aid': 3277573387, 'iid': 10, 'value': 100}, {'aid': 2863159884, 'iid': 10, 'value': 100}]} 2022-03-01 06:09:55,570 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: On to True (original: 1) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,570 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 0 2022-03-01 06:09:55,571 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: Brightness to 100 (original: 100) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,571 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 100 2022-03-01 06:09:55,571 root._set_chars : INFO [61998] Light _set_chars: {'On': 1, 'Brightness': 100} 2022-03-01 06:09:55,571 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: On to True (original: 1) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,571 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 0 2022-03-01 06:09:55,571 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: Brightness to 100 (original: 100) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,571 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 100 2022-03-01 06:09:55,572 root._set_chars : INFO [61998] Light _set_chars: {'On': 1, 'Brightness': 100}
How can I get these characteristics?
The text was updated successfully, but these errors were encountered:
Hi,
is it possible to get all characteristics sent in one event done by a scene from iOS device?
I want to queue all events to send less requests and bundle them.
I see this in the logs after a calling a scene within two lightbulbs:
2022-03-01 06:09:55,570 pyhap.hap_handler.handle_set_characteristics : DEBUG [61998] ('10.11.12.133', 59955): Set characteristics content: {'characteristics': [{'aid': 2863159884, 'iid': 9, 'value': 1}, {'aid': 3277573387, 'iid': 9, 'value': 1}, {'aid': 3277573387, 'iid': 10, 'value': 100}, {'aid': 2863159884, 'iid': 10, 'value': 100}]} 2022-03-01 06:09:55,570 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: On to True (original: 1) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,570 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 0 2022-03-01 06:09:55,571 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: Brightness to 100 (original: 100) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,571 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 100 2022-03-01 06:09:55,571 root._set_chars : INFO [61998] Light _set_chars: {'On': 1, 'Brightness': 100} 2022-03-01 06:09:55,571 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: On to True (original: 1) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,571 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 0 2022-03-01 06:09:55,571 pyhap.characteristic.client_update_value : DEBUG [61998] client_update_value: Brightness to 100 (original: 100) from client: ('10.11.12.133', 59955) 2022-03-01 06:09:55,571 pyhap.characteristic.set_value : DEBUG [61998] set_value: Brightness to 100 2022-03-01 06:09:55,572 root._set_chars : INFO [61998] Light _set_chars: {'On': 1, 'Brightness': 100}
How can I get these characteristics?
The text was updated successfully, but these errors were encountered: