请问uctypes.struct()如何得到字节数组
-
请问uctypes.struct()如何得到字节数组。我个人理解struct函数是存储数据的字典。但SDK中说明可通过此函数得到字节数组。
-
https://docs.singtown.com/micropython/zh/latest/openmvcam/library/ustruct.html
使用pack函数可以得到字节串。
例子:
import struct struct.pack('hhl', 1, 2, 3) b'\x00\x01\x00\x02\x00\x00\x00\x03'
完整的用法,中文pytnon文档:
https://docs.python.org/zh-cn/3/library/struct.html