我的Arduino有问题。我试图用这段代码将布尔数组转换为整型:
int boolean_to_decimal(bool bol[]) {
int somme=0;
for (int i = 0; i < 6; i++){
somme += bol[i] * pow(2, 5-i);
}
return somme;
}
没有什么令人印象深刻的,但这是我的结果:
010101 == 20(代替21)
100101 == 36(代替37)
101001 == 40(代替41)
011001 == 23 (代替25)
等谢谢你的宝贵时间,David对整数使用浮点函数pow()
似乎很糟糕,因为它可能包含错误。请尝试使用位移位。
int boolean_to_decimal(bool bol[]){
int somme=0;
for (int i = 0; i<6; i++){
somme += bol[i]*(1 << (5-i));
}
return somme;
}