gpt4 book ai didi

c++ - Arduino 自动驾驶汽车 if 语句(超声波)

转载 作者:行者123 更新时间:2023-11-28 04:28:09 34 4
gpt4 key购买 nike

我在为自动驾驶汽车创建 if 语句时遇到了问题。汽车跳过大部分 if 语句并立即转到 else 语句。传感器给出正确的值。是因为我使用了“else if”语句还是其他什么?汽车应该对其周围环境使用react,所以我不得不尽可能多地给它一些 if 语句。但是相反,它只执行最后一点,它向后等待等待向左向后和向右向后。所以我的问题是我是否必须添加更多 if 语句以便它对周围环境做出更好的 react ,或者还有更多?以下是 if 语句的代码:

  if (sensors[0] >= 50 ) { //if the distance of the front sensor is greater than 50cm, than set Fwd true. Otherwise its false.
Fwd = true;
} else {
Fwd = false;
}
delay(50);
if ((Fwd == true) && (sensors[1] > 50) && (sensors[2] > 50)) {
fwd();
} else if ((Fwd == true) && (sensors[1] < 50)) {
fwdRight();
} else if ((Fwd == true) && (sensors[2] < 50)) {
fwdLeft();
} else if ((Fwd == false) && (sensors[1] < 50) && (sensors[2] < 50)) {
Stp();
} else if ((Fwd == false) && (sensors[1] < 50)) {
bwdRight();
} else if ((Fwd == false) && sensors[2] < 50) {
bwdRight();
} else {
Stp();
delay(1000);
bwd();
delay(500);
bwdLeft();
delay(500);
bwdRight();
}

最佳答案

首先整理您的代码,然后很明显哪里出了问题。例如,您通过执行以下操作调用对 Fwd 的多个检查:

if ((Fwd == true) && ... ) {
...
} else if ((Fwd == true) && ... ) {
...
} else if ((Fwd == true) && ... ) {
...
} else if ((Fwd == false) && ... ) {
...
} else if ((Fwd == false) && ... ) {
...
}

这会耗尽程序内存中的宝贵资源。进行一次检查并从那里进行评估会更有效率:

if (Fwd){
// Check sensor conditions here
} else {
// Check more sensor conditions here
}

事实上,您可以完全省略 Fwd 变量(除非您在别处使用它),从而节省更多内存空间:

// Check whether to go forward or backwards.
// >= 50 - forward
// < 50 - backward
if (sensors[0] >= 50) {
// Check sensor conditions here
} else {
// Check more sensor conditions here
}

总的来说,你可能会得到类似这样的结果:

// Check whether to go forward or backwards.
// >= 50 - forward
// < 50 - backward
if (sensors[0] >= 50) {
// Going forward, but which direction?
if (sensors[1] < 50) {
fwdRight();
} else if (sensors[2] < 50) {
fwdLeft();
} else {
// sensors[1] >= 50 AND sensors[2] >= 50
// Going straight forward
fwd();
}
} else {
// Check backward sensor conditions here
}

这个答案可能不会直接回答您的问题,但它应该可以帮助您更好地诊断发生了什么。

关于c++ - Arduino 自动驾驶汽车 if 语句(超声波),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53739494/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com