feat(rlottie) add LVGL-Rlottie interface as 3rd party lib (#2700)

This commit is contained in:
Gabor Kiss-Vamosi
2021-10-22 15:44:43 +02:00
committed by GitHub
parent 49c069fe89
commit 03fff13f62
16 changed files with 470 additions and 0 deletions

11
scripts/filetohex.py Executable file
View File

@@ -0,0 +1,11 @@
#!/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 =", ")