I bought a bluetooth adapter for my Arduino BT so that I can work with it in Max/MSP. I'm really new at bluetooth so I'm not quite sure I know what I'm doing.
But my bluetooth adapter is asking for a passkey for the Arduino BT when I try to pair the two together. Can someone point me in the right direction on how to pair the two properly? does Arduino BT have a passkey of some sort ?
in order to change the pass you DON'T need to burn a new bootloader...
you just need to run a program that send this commands
Serial.begin(115200); // connect to the serial port
digitalWrite(7, HIGH);
delay(10);
digitalWrite(7, LOW);
delay(2000);
Serial.println("SET BT AUTH * 12345");