Skip to content

Commit

Permalink
Fixed firmware version dependency (#24)
Browse files Browse the repository at this point in the history
* Fixed v62093 issue.

---------

Co-authored-by: Cameron <32912464+kiwi-cam@users.noreply.github.com>
  • Loading branch information
banboobee and kiwi-cam committed Jul 5, 2024
1 parent da4f175 commit 430d954
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -414,12 +414,12 @@ class Device {
packet[0x26] = command;
packet[0x28] = this.count & 0xff;
packet[0x29] = this.count >> 8;
packet[0x2a] = this.mac[2]
packet[0x2b] = this.mac[1]
packet[0x2c] = this.mac[0]
packet[0x2d] = this.mac[3]
packet[0x2e] = this.mac[4]
packet[0x2f] = this.mac[5]
packet[0x2a] = this.mac[5]
packet[0x2b] = this.mac[4]
packet[0x2c] = this.mac[3]
packet[0x2d] = this.mac[2]
packet[0x2e] = this.mac[1]
packet[0x2f] = this.mac[0]
packet[0x30] = this.id[0];
packet[0x31] = this.id[1];
packet[0x32] = this.id[2];
Expand Down

0 comments on commit 430d954

Please sign in to comment.