文件名称:ByteConvert_cpp:C ++库,用于将变量转换为字节并返回
文件大小:38KB
文件格式:ZIP
更新时间:2024-05-19 07:20:52
c library cpp i2c convert
字节转换 什么事啊 您是否曾经想过通过I2C,SPI,串行或其他协议或总线传输int , short , long或任何其他数字类型,但是您已将变量转换为字符串以便能够逐个char地传输它。 该库使您可以将任何数值转换为字节或其他方式,也可以打印字节数组。 使用此库时需要考虑的事项 使用此库时,需要考虑可变的字节大小,因为如果使用的平台不同,则可能会出现一些错误,因为平台1上的int有4个字节,而平台2上的int可能有2个字节。 您需要安装什么项目? 您需要 , 和 。 sudo apt-get install python3 python3-pip ninja-build sudo pip3 install meson 正在安装 meson build ninja -C build ninja -C build test ninja -C build install # Or sim
【文件预览】:
ByteConvert_cpp-master
----.gitignore(296B)
----README.md(2KB)
----test()
--------hex_string_to_block.cpp(2KB)
--------to_variable.cpp(776B)
--------meson.build(483B)
--------byte_to_hex.cpp(1KB)
--------hex_to_byte.cpp(1KB)
--------block_to_hex_string.cpp(1KB)
--------to_block.cpp(1KB)
----meson.build(859B)
----examples()
--------bytes_to_string.cpp(603B)
--------meson.build(429B)
--------string_to_bytes.cpp(1KB)
--------bytes_to_int.cpp(496B)
--------int_to_bytes.cpp(1KB)
----LICENSE(1KB)
----extras()
--------graphics()
----.travis.yml(999B)
----Makefile(110B)
----CHANGELOG(242B)
----ByteConvert()
--------meson.build(266B)
--------ByteConvert.hpp(3KB)
--------ByteConvert.cpp(2KB)