Make hex conversion shorter #1

Merged
Telos4 merged 1 commits from apo/LoRa-Workshop:master into master 2019-12-02 22:41:18 +00:00

View File

@ -85,9 +85,9 @@ devAddr = [0x00, 0x00, 0x00, 0x00]
nwkSKey = [0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
appSKey = [0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]
devAddr_hex = " ".join(list(map(lambda x: "{0:02x}".format(x), devAddr))).upper()
nwkSKey_hex = " ".join(list(map(lambda x: "{0:02x}".format(x), nwkSKey))).upper()
appSKey_hex = " ".join(list(map(lambda x: "{0:02x}".format(x), appSKey))).upper()
devAddr_hex = " ".join(["%02X" % (x,) for x in devAddr])
nwkSKey_hex = " ".join(["%02X" % (x,) for x in nwkSKey])
appSKey_hex = " ".join(["%02X" % (x,) for x in appSKey])
print("devAddr: ", devAddr_hex)
print("nwkSKey: ", nwkSKey_hex)
print("appSKey: ", appSKey_hex)