I have a general idea of how to interface the bluesmirf with the arduino pro mini. But can someone provide me with an example of establishing a serial connection with a bluesmirf to a computer? Any diagram would help greatly! I've used the bluesmirf once with the SSC-32 board:
The Arduino doesn't pair with the pc, it communicates serially with the pc "through" the BlueSmirf.
So you could take any serial example sketch, and then make sure it and the software on the pc side are configured at the Smirf's baud rate.
Smirf's can be a bit tricky, there's a couple of firmware settings you'll want to check out against the documentation, like it has 5 modes and only one of them is right. The module I received shipped in the wrong mode and took days to trace the issue back to the firmware because the supplier incorrectly stated it had been tested prior to shipping.
oh sorry-I didn't phrase it right. Of course the smirf communicates with the pc. For the bluesmirf that I have with my SSC-32, I simply installed it and connected the wires like so in the diagram and my pc could detect and pair with it.
So I'm guessing I'm using something like:
Serial.begin(9600);
I guess once my arduino comes in I'll test things out.