Skip to content

Instantly share code, notes, and snippets.

@blueBye
Created April 8, 2023 20:33
Show Gist options
  • Save blueBye/28d5280e195da2b4c138ea6c4d8b9ab9 to your computer and use it in GitHub Desktop.
Save blueBye/28d5280e195da2b4c138ea6c4d8b9ab9 to your computer and use it in GitHub Desktop.
data = [
0x03, 0x17, 0x01, 0x0A, 0x07, 0x07, 0x11,
0x0A, 0x0E,
0x1B, 0x17, 0x11, 0x01, 0x1E,
]
for i in range(-20, 20):
for d in data:
print(chr(ord('A') + d + i), end='')
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment