The Bluetooth Mate Silver is a bluetooth module that can be connected to any bluetooth device, like a mobile phone. It comes with 6 pins: RTS-0, RX-I, TX-0,VCC,CTS-I, GND. The default configuration is:
For more information on these values, check the Advanced user manual.
Configuring your Bluetooth module in the first time
Theoretically it is possible to configure the module in the first 60 seconds after power on. But, we tried and didn't work. So, the second option is to configure using a serial port. You can either use a FDTI module or your Arduino board without the AMTEGA chip (simply remove the chip and you have a FDTI board). Connect your module as show below:
OR
Now, to gain access to your bluetooth module over the serial interface, you can use the Serial Monitor window from Arduino interface or connect it using a terminal program like PuTTY.
The following picture shows the PuTTY's initial screen. This is your configuration window. Select Serial as your connection type. Then, adjust the Serial line parameter to match your Arduino or FTDI board port (COM1, COM2, etc for windows, /dev/ttyUSB0, /dev/ttyUSB1, etc for linux, or ttyACM1, ttyACM2 for OSX). Set speed to 115200, like your module's default baud rate.
After that, click open to make the connection:
On this black screen, type "$$$" to enter in the configuration mode. You will see a "CMD" response. To quit, just type "---".
Turn on the echo mode, typing "+". It will make things easier.
Now you can change the name of your Bluetooth module. Type "SN, your_desired_name_here". This will help you to identify your module in the control panel.
To enable the configuration on both serial and bluetooth connection, type "ST,255".
It's done, your module is ready to use without a cable. Just type "R,1" to restart it.
To enter in the configuration mode, find your bluetooth module from your computer or phone, then use the PIN 1234.
This will create a virtual serial port, that can be used in the same way we did, but over Bluetooth.
Arduino Pro Mini with Bluetooth
The Arduino Pro Mini board is configured with a 57600 baudrate. So, you have to change it typing "SU,57" in the bluetooth configuration.
Now, download the following code and paste it in the Arduino IDE:
/* Bluetooth Mate Echo
by: Dalton Hioki based on http://www.sparkfun.com/tutorial/BluetoothMate-Quickstart/Bluetooth... by Jim Lindblom - jim at sparkfun.com
date: 3/20/12
license: CC-SA v3.0 - Use this code however you'd like, for any
purpose. If you happen to find it useful, or make it better, let us know!
Required connection:
Bluetooth Mate-----------------Arduino
CTS-I (Not connected)
VCC------------------------5V ou 3.3V
GND--------------------------GND
TX-O-------------------------D2
RX-I-------------------------D3
RTS-O (Not connected)
*/
#include <NewSoftSerial.h>
int bluetoothTx = 2;
int bluetoothRx = 3;
NewSoftSerial bluetooth(bluetoothTx, bluetoothRx);
int counter = 0;
int incomingByte;
void setup()
{
Serial.begin(57600);
bluetooth.begin(57600);
delay(100);
}
void loop()
{
if (Serial.available() > 0) {
incomingByte = Serial.read();
if (incomingByte == '0') {
Serial.println("RESET");
bluetooth.println("RESET");
counter=0;
}
}
Serial.println(counter);
bluetooth.println(counter);
counter++;
delay(250);
}
Now, open a serial connection via Bluetooth to your module and see the counter counting. If you type 0, the counter will reset.
Connect your Arduino TX to the module's RX and also the other way round. Power on your Bluetooth from 3.3V to 6V.
Obs: If you are using linux, you have to simlink your bluetooth's virtual serial port to /dev/ttyUSBXX, where XX is any available number. Do this typing "ln -sf /dev/rfcomm0 /dev/ttyUSB123" (replace 123 by any available port number). We have to do this because the Arduino IDE doesn't show ports that aren't named with ttyUSB. (you have to create this link every time you reconnect your module).
Then, open the Arduino IDE, select Tools > Boards and select the Arduino Pro or Pro Mini board. Select your Bluetooth port in Tools > Ports.
To upload your file, you have to keep pressing the RESET button of your Arduino board until the 'Binary Sketch Size....' message in the IDE.
References:
Christian Rheinnecker replied to abhishek yadav's discussion how to record time between two events using arduion
Christian Rheinnecker posted a status
Christian Rheinnecker posted a video
GarageLab posted a blog post
GarageLab posted a blog post
abhishek yadav posted a discussion
Danny Vigo commented on Fernando Gil's blog post Tutorial: Servomotor + Arduino
Danny Vigo replied to SATYA NARAYANA REDDY NIMMAKAYALA's discussion 5 stepper motor control code
Christian Rheinnecker posted a status
Christian Rheinnecker posted a video© 2013 Created by Marcelo Rodrigues.

You need to be a member of GarageLab (arduino, electronics, robotics, hacking) to add comments!
Join GarageLab (arduino, electronics, robotics, hacking)