うまくいけば、これは質問の終了を保証するほど具体的ではありません.
私はキャンパスの研究グループと協力して、ロボット工学と自動化について学んでいます。私の現在のタスクは、Arduino モーター シールドの内外を学習し、Bluetooth シールドと組み合わせることです。
この Bluetooth シールドとこのモーター シールドを使用しています。必要に応じて、このモーター シールドにもアクセスできます。
ほとんどの場合、現在のコードは各ボードで個別に機能しますが、それらを組み合わせると、突然何も機能しなくなります。モーター部分は、Bluetooth 固有のコードがコメント アウトされている場合にのみ機能します。これにより、ピンの競合があるという結論に至りました。そうは言っても、これを機能させる方法はありますか?回避策など
私のコードに問題がある場合に備えて、私が使用しているコードは次のとおりです。
#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.
}
}
}
}
}
ありがとうございます。