I hope my type of question does not violate question type rules!
I'm coding a Bluetooth iOS app to control a peripheral (Bluetooth speaker) and I'd like the app to only identify a set of unique Bluetooth modules (brand).
Since I first want to identify if the speaker is part of the brand, I cannot rely on picking up certain types of services since any other speaker could also have them. Neither can I rely on the identifier name, since it's very superficial and prone to change.
The closest I've come to is the first 16-code of the UUID 32 hexadecimal digits, organization unique identifier (OUI). For example in the image below, is it good practice to use D42A8779-F905-BA72-80AA
of the D42A8779-F905-BA72-80AA-3186A18D4453
as a brand peripheral identifier?
If not, what could I possibly rely on?