- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
希望这不会太具体以保证问题结束。
我在校园里与一个研究小组合作,学习机器人技术和自动化。我目前的任务是学习 Arduino 电机扩展板的内部和外部,并将其与蓝牙扩展板结合起来。
我们正在使用 this bluetooth shield和 this motor shield .如有必要,我们还可以访问 this motor shield .
在大多数情况下,我当前的代码分别适用于每个板,但是当我将它们组合在一起时,突然就没有任何效果了。电机部分仅在蓝牙特定代码被注释掉时才工作。这使我得出结论,存在管脚冲突。话虽这么说,有什么办法可以让它发挥作用吗?任何解决方法等。
这是我正在使用的代码,以防我的代码出现问题。
#include <SoftwareSerial.h> // Necessary to use the bluetooth Software Serial Port
#define RxD 7
#define TxD 6
#define DEBUG_ENABLED 1
SoftwareSerial bts(RxD,TxD);
int drive = 12; // Pin definitions
int brake = 9;
int power = 3;
const int DRIVE_F = 1; // Command options returned from parseCommand
const int DRIVE_B = 2;
const int LEFT = 3;
const int RIGHT = 4;
const int STOP = 5;
const int NONE = 0;
void setup()
{
pinMode(RxD, INPUT); // Set up pin modes
pinMode(TxD, OUTPUT);
pinMode(drive, OUTPUT);
pinMode(brake, OUTPUT);
analogWrite(power, 80);
digitalWrite(drive, LOW);
digitalWrite(brake, HIGH);
setupBlueToothConnection();
}
void loop()
{
switch(parseCommand())
{
case DRIVE_F: // Switch through command returns.
forward();
bts.println("Driving forward");
delay(1000);
fullStop(); // Go ahead and stop. Don't want
break; // the car to run infinitely yet.
case DRIVE_B:
backward();
bts.println("Driving backward");
delay(1000);
fullStop();
break;
case LEFT:
turnLeft(); // These do nothing for now. Just here for later.
break;
case RIGHT:
turnRight();
break;
case STOP:
fullStop();
bts.println("Stopping"); // Stop the car. Will be needed later.
break;
default:
turnLeft(); // If invalid command returned,
delay(250); // wiggle wheels for an error message.
turnRight();
delay(250);
turnStraight();
break;
}
}
void setupBlueToothConnection() // Not exactly sure why all this is needed. It was in the sample code, so I kept it all
{
bts.begin(38400); //Set BluetoothBee BaudRate to default baud rate 38400
bts.print("\r\n+STWMOD=0\r\n"); //set the bluetooth work in slave mode
bts.print("\r\n+STNA=SeeedBTSlave\r\n"); //set the bluetooth name as "SeeedBTSlave"
bts.print("\r\n+STOAUT=1\r\n"); // Permit Paired device to connect me
bts.print("\r\n+STAUTO=0\r\n"); // Auto-connection should be forbidden here
delay(2000); // This delay is required.
bts.print("\r\n+INQ=1\r\n"); //make the slave bluetooth inquirable
Serial.println("The slave bluetooth is inquirable!");
delay(2000); // This delay is required.
bts.flush();
}
void forward()
{
digitalWrite(drive, HIGH);
digitalWrite(brake, LOW);
}
void backward()
{
digitalWrite(drive, LOW);
digitalWrite(brake, LOW);
}
void fullStop()
{
digitalWrite(brake, HIGH);
}
void turnRight()
{
}
void turnLeft()
{
}
void turnStraight()
{
}
int parseCommand()
{
String command = ""; // String to hold the command
char recvChar; // Char to hold each character.
while(true)
{
if(bts.available())
{
recvChar = bts.read();
if(recvChar == 13)
bts.println(); // If char received is an ASCII 13, carriage-return/enter key
else // print new line.
bts.print(recvChar); // Else, print received char to serial so user can see his/her input.
if(recvChar != -1 && recvChar != 13)
command += recvChar; // If not -1 (no input received from read()) or 13, concat it with command
if(recvChar == 13)
{ // If enter pressed, check the command variable.
if( command == "forward" )
return DRIVE_F;
else if( command == "back" || command == "backward")
return DRIVE_B;
else if( command == "stop" )
return STOP;
else
{
bts.println("'" + command + "' is an invalid command.");
return NONE; // If invalid, return NONE and print error.
}
}
}
}
}
提前致谢。
最佳答案
看看这两个屏蔽,我怀疑引脚 6 有引脚冲突。Arduino 电机屏蔽暴露了“2 个用于两个 Aanlog 输出的 TinkerKit 连接器(中间为橙色),连接到引脚 D5 和 D6 上的 PWM 输出。”它们可能在 D6 上有一个下拉或上拉电阻,这会干扰您的蓝牙 UART 通信。
有没有办法通过引脚 0 和 1 路由您的蓝牙通信?如果这样做,您必须使用蓝牙而不是 USB。
也许更简单的方法是切换到电机护罩,只是一个电机护罩并且需要更少的引脚。类似 Ardumotor from Sparkfun 的东西只使用引脚 3, 11, 12, and 13 .
现在有一个 dedicated group for robotics .
关于c - 结合使用 Arduino Motor Shield 和 Bluetooth Shield,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15061334/
我尝试使用键盘和 TVout 库制作一个简单的 arduino 计算机。 由于库不兼容,我想使用 arduino mega 作为主板,使用 arduino uno 作为图形芯片。 但它总是在电视上只显
我正在尝试学习如何评估一个值是增加还是减少。在这种情况下,我使用从 0 - 14 映射的电位计。基本上我需要它来查看当前值,如果当前值增加,则打印一件事,如果该值减小,则打印其他内容。 到目前为止,这
我曾尝试使用 Arduino IDE 中提供的标准草图测量模拟引脚值。然而,即使没有连接到引脚,它也会打印出随机值。有什么需要注意的吗? 我有一个从 5V+ 连接到模拟引脚 0 的 FSR 传感器 最
我正在尝试在字符串旁边打印一个整数,但它并没有真正起作用并且我感到困惑。 int cmdSeries = 3; Serial.println("Series : " + cmdSeries);// T
我有一个使用不同电源供电的设备,我正在尝试与其串行通信,它有 TX 和 RX 线、GND 和 2.7+ 线,它非常笨拙,所以它有自己的 PS。 目前我得到了一些奇怪的结果,所以想知道是否需要在 Ard
使用Arduino Blackwidow或Yellowjacket有运气吗?在评论方面,我找不到关于它们的在线信息。 我想连接到无线路由器,发送与已读取的电阻有关的小型POST请求,并以JSON格式接
我的 Arduino Uno 已全部设置完毕并且运行良好。 项目:Arduino 根据给定的命令控制 9v 电机。由于 Arduino 仅提供 5v,我通过晶体管为其添加了 9v 电池 我决定将新代码
我最近买了一个Arduino Uno ,现在我正在尝试一下。我有几个 18B20 传感器和一个连接到它的 ENC28J60 网络模块,然后我正在制作一个草图,以便我可以从浏览器连接到它,并以简单的网页
我有一个使用不同电源供电的设备,我正在尝试与其串行通信,它有 TX 和 RX 线、GND 和 2.7+ 线,它非常笨拙,所以它有自己的 PS。 目前我得到了一些奇怪的结果,所以想知道是否需要在 Ard
已结束。 这个问题是 off-topic .它目前不接受答案。 想要改进这个问题? Update the question所以它是on-topic堆栈溢出。 关闭 9 年前。 Improve this
我有一个 Arduino 入门套件,它带有主动和被动蜂鸣器。不幸的是,我似乎不知道哪个是哪个。我只知道一个比另一个长一点,我可以看到下面的绿色电路板。 最佳答案 有源蜂鸣器会自行发出声音。你基本上只是
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 9年前关闭。 Improve this q
我想从 Arduino 中的几个传感器获取一些数据,然后创建一些端点,以便我可以从 Web 应用程序中的传感器获取数据。那可能吗? 最佳答案 您可以使用 Firebase 或 Thingspeak 服
我正在创建一个新库来一起控制键盘和 LCD。大多数代码似乎都可以编译,但是当它到达我定义 LiquidCristal 变量的行时,它说: 'LiquidCrystal' does not name a
我从最近刚开始使用arduino的我的一个学生那里得到了一些代码。 他试图做一个中断,并且有点奏效。问题是它运行了两次(他调用了该函数),所以 bool 值被重置了。 我试图找到答案,但找不到任何答案
我最近开始了 Arduino 开发,在向 friend 和同事解释时,我收到的一个问题我没有答案,也想知道为什么微 Controller 运行的程序称为草图?这是从电气工程继承下来的惯例吗?我不熟悉这
如何在编译时确定 Arduino 的板类型(例如 Uno vs Nano)? 不要与确定处理器类型混淆。正如我所看到的那样,例如#如果定义(__AVR_ATmega32U4__)... 同样,我想要一
我已经看了很多,但还没有找到涵盖所有这些的好教程。因此,我需要将项目分成多个选项卡/ino 文件,只是为了使其更清晰。 所以当你打开一个新标签后,我想问几个问题: 如果主项目文件(例如 main)还有
您好,我正在使用 https://github.com/pubnub/arduino 中的 PubNubsubscriber 示例我能够接收消息,只要我收到消息,一切都运行正常,如果一段时间过去了,比
所以我的 arduino 正在从串行接收一个字符串,由三个用逗号分隔的值组成,我试图将这些值分成三个不同的变量,其余的我可以做。 字符串看起来像这样“1000,1.5,0.9”或“5000,20,0.
我是一名优秀的程序员,十分优秀!