Skip to content

Commit

Permalink
vinscant: sWAP UID ENDIANNESS
Browse files Browse the repository at this point in the history
  • Loading branch information
Reavershark authored and hannes-dev committed Oct 4, 2024
1 parent 39e0853 commit 83da589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vinscant/mpfiles/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_key():
def uid_to_string(uid):
ret = ""
for i in uid:
ret = "%02X" % i + ret
ret += "%02X" % i
return ret

class Led:
Expand Down

0 comments on commit 83da589

Please sign in to comment.