Files
luban-lite-t3e-pro/packages/artinchip/lvgl-ui/lvgl_v8/lvgl/scripts/filetohex.py
2025-09-30 11:56:06 +08:00

12 lines
181 B
Python

#!/usr/bin/env python3
import sys
with open(sys.argv[1], 'r') as file:
s = file.read()
b = bytearray()
b.extend(map(ord, s))
for a in b: print(hex(a), end =", ")