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:
#include <SoftwareSerial.h>
SoftwareSerial Bluetooth(3, 2); // RX | TX
void setup()
{
Serial.begin(9600);
Bluetooth.begin(9600); //Baud Rate for AT-command Mode.
Serial.println("** Command mode **");
}
void loop()
{
while(Bluetooth.available()) {
Serial.write(Bluetooth.read());
}
while(Serial.available()){
Bluetooth.write(Serial.read());
}
}
Then program the uno and open the serial monitor, you should be able to get into command mode: Try the following commands:
AT
AT+NAME?
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)
AT+NAMEbluey
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:
https://github.com/zubial/arduino-serial/wiki/Bluetooth-HM-10-AT-Commands
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.