Files
luban-lite-t3e-pro/packages/artinchip/lvgl-ui/lvgl_v9/lvgl/scripts/filetohex.py
刘可亮 0ef85b55da v1.1.0
2024-09-30 17:06:01 +08:00

12 lines
170 B
Python
Executable File

#!/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 =", ")