If you can't find the device or you just want to give it a cooler name, you can control it through AT commands; Set up the following code:
1 #include <SoftwareSerial.h>
2
3 SoftwareSerial Bluetooth(3, 2); // RX | TX
4
5 void setup()
6 {
7 Serial.begin(9600);
8 Bluetooth.begin(9600); //Baud Rate for AT-command Mode.
9 Serial.println("** Command mode **");
10 }
11 void loop()
12 {
13 while(Bluetooth.available()) {
14 Serial.write(Bluetooth.read());
15 }
16 while(Serial.available()){
17 Bluetooth.write(Serial.read());
18 }
19 }
Then program the uno and open the serial monitor, you should be able to get into command mode: Try the following commands:
It should 1. tell you it's OK and 2. tell you it's name. if they both succeeded you can go ahead and change the name of the device: (For instance, to change it to bluey - notice we didn't use = or anything else after NAME)
Note that therer's a character limit of 12 characters, so keep it short.
There's a whole bunch of commands you can type in to configure this device, here's just one list we've found on github:
Once the name is changed, you should find the device under the different name in your phone.
This repo maintains code for the project. Contributions and improvements are encouraged.