1
0
mirror of https://github.com/mjg59/python-broadlink.git synced 2024-09-20 20:10:36 +02:00

Merge pull request #14 from msh100/master

each send_packet() needs a unique count
This commit is contained in:
Matthew Garrett 2016-11-11 09:15:08 +13:00 committed by GitHub
commit 61efc7ae29

View File

@ -129,6 +129,7 @@ class device:
self.key = payload[0x04:0x14]
def send_packet(self, command, payload):
self.count = (self.count + 1) & 0xffff
packet = bytearray(0x38)
packet[0x00] = 0x5a
packet[0x01] = 0xa5