1
0
mirror of https://github.com/mjg59/python-broadlink.git synced 2024-11-21 14:43:30 +01:00

Fix index (#533)

This commit is contained in:
Felipe Martins Diel 2021-02-04 17:16:17 -03:00 committed by GitHub
parent e12fd6f115
commit 008846ba41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,7 +161,7 @@ class device:
payload[0x04:0x14] = [0x31]*16
payload[0x1E] = 0x01
payload[0x2D] = 0x01
payload[0x30:0x37] = "Test 1".encode()
payload[0x30:0x36] = "Test 1".encode()
response = self.send_packet(0x65, payload)
check_error(response[0x22:0x24])