The Bluetooth Mate Silver is a versatile Bluetooth module designed for wireless communication between devices. It is particularly useful for projects that require a Bluetooth interface, such as remote control systems, telemetry, computer peripherals, and robotics. With its easy integration with Arduino boards, the Bluetooth Mate Silver enables hobbyists and professionals to add wireless capabilities to their projects without extensive knowledge of Bluetooth technology.
Pin Number | Name | Description |
---|---|---|
1 | GND | Ground connection |
2 | VCC | Power supply (3.3V to 6V) |
3 | TX-O | Transmit data output (connect to RX of host device) |
4 | RX-I | Receive data input (connect to TX of host device) |
5 | RTS | Request To Send (flow control, not typically used) |
6 | CTS | Clear To Send (flow control, not typically used) |
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
void setup() {
// Set the baud rate to match the Bluetooth Mate Silver default
mySerial.begin(115200);
Serial.begin(9600);
Serial.println("Bluetooth Mate Silver ready to pair");
}
void loop() {
// Read from the Bluetooth module and send to the Arduino Serial Monitor
if (mySerial.available()) {
char c = mySerial.read();
Serial.write(c);
}
// Read from the Serial Monitor and send to the Bluetooth module
if (Serial.available()) {
char c = Serial.read();
mySerial.write(c);
}
}
Q: Can I use the Bluetooth Mate Silver with a 5V Arduino? A: Yes, the module can handle up to 6V on the VCC pin, but ensure that the TX/RX logic levels are compatible.
Q: How do I change the name or passcode of the Bluetooth Mate Silver? A: You can use AT commands to configure the module. Refer to the manufacturer's datasheet for the specific commands.
Q: What is the maximum range of the Bluetooth Mate Silver? A: The maximum range is up to 100 meters in open space, but this can be significantly reduced by obstacles and interference.
Q: Can I use the module with a battery? A: Yes, as long as the battery voltage is within the 3.3V to 6V range and can supply the necessary current.