Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UUID and MACAddress for Bluetooth BLE

I must confess I am a newbie when it comes to BLE 4.0, and I want to understand what comprises a unique identifier for a BLE peripheral. Generally, for all WiFi communications, MAC is treated as the unique ID for the device. I have following questions:

  • What is UUID used for? Should different BLE peripherals have different UUID?
  • What is unique ID for a BLE peripheral device, as identifiable by some other central BLE device? Say for example, how do location finding apps on Android detect a peripheral BLE device?
  • Can one get Unique ID of a BLE peripheral simply by scanning (i.e, without connection)?
  • Is any manual intervention needed to connect to a BLE peripheral? I've read that there is no need for manual opt in to read the data that peripheral transmits

Hope some of you could help.

like image 711
Ouroboros Avatar asked Jan 23 '14 07:01

Ouroboros


People also ask

Does BLE have a MAC address?

Bluetooth Smart is also referred to as BLE or Bluetooth Low Energy. Both Bluetooth low energy android and iOS devices are intended for the intermittent advertisement of the position or its presence. The advertisement packet holds the broadcaster's MAC address and unique service formation.

What is UUID of BLE?

A Universally Unique Identifier (UUID) is a globally unique 128-bit (16-byte) number that is used to identify profiles, services, and data types in a Generic Attribute (GATT) profile. For efficiency, the Bluetooth® Low Energy (BLE) specification adds support for shortened 16-bit UUIDs.


1 Answers

BLE devices have unique 6 byte Bluetooth addresses just like regular Bluetooth. This uniquely identifies the device. However, BLE can also use "random" addresses which follow a specific format so you can tell when you have a random addresses as opposed to a regular public address.

  • In the BLE vernacular, "UUID" refers to the identification codes to identify the data types found in the Generic Attribute Protocol (GATT)
  • Not sure I understand this question... There's the Bluetooth address, but again, BLE devices can use random addresses.
  • Well, when you do a scan for advertising packets you receive packets that contain the Bluetooth addresses. Those addresses are what you use to connect to a specific device.
  • You have to manually make connections to devices when you want to "connect". However, advertising packets can contain data which you can receive passively without any sort of connection. iBeacon's use the connectionless advertising packet information and so no connections are made.
like image 60
Tim Tisdall Avatar answered Sep 28 '22 10:09

Tim Tisdall