“Intercommunication between Two Microduino-BT Modules”的版本间的差异
(Created page with "{| style="width: 800px;" |- | *Step 1: Two BT modules match the connection. **Please refer to: Connection Method for New Version *Step 2: The default is the soft serial...") |
(没有差异)
|
2015年1月6日 (二) 02:44的最新版本
The default is the soft serial port (D4, D5). Here we introduce the connection method of the default serial port. If you want to change jumpers, you need to change program of the serial port correspondingly. Note: Baud rate should be below 38400.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(4, 5); // RX, TX
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(9600);
// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
}
void loop() // run over and over
{
if(Serial.available())
{
mySerial.write(Serial.read());
}
if(mySerial.available())
{
Serial.write(mySerial.read());
}
}
Note: After connection, AT instruction doesn’t work. |