作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我要转换
char lineOneC[8] = {0,1,1,0,0,0,0,1};
进入
byte lineOneB = B01100001;
我如何在 C++/Arduino 中执行此操作?
最佳答案
我不确定 Adruino 平台施加的具体限制,但这应该适用于任何标准编译器。
char GetBitArrayAsByte(const char inputArray[8])
{
char result = 0;
for (int idx = 0; idx < 8; ++idx)
{
result |= (inputArray[7-idx] << idx);
}
return result;
}
A test of this code is now on Codepad , 如果说有帮助。
关于C++/阿杜伊诺 : How do I convert a string/char-array to byte?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4369948/
我是一名优秀的程序员,十分优秀!