Page 1 of 1

get uuid of esp32 ble on arduino

Posted: Wed Jul 12, 2017 10:40 am
by krmzgl
hi
how to get uuid of esp32 ble on arduino with gatt?
thnx

Re: get uuid of esp32 ble on arduino

Posted: Fri Jul 21, 2017 7:13 pm
by kevineverson
I was wondering the same thing, does anyone have any solutions here?

Re: get uuid of esp32 ble on arduino

Posted: Wed Jul 26, 2017 10:51 pm
by kolban
What API library are you using to work with BLE in an Arduino environment on the ESP32?

Re: get uuid of esp32 ble on arduino

Posted: Thu Jul 27, 2017 2:09 pm
by f.h-f.s.
Do you mean a unique identifier for the esp32 bluetooth? like Bluetooth Device Address?

Code: Select all

uint8_t mac[6];
esp_err_t err = esp_read_mac(&mac, ESP_MAC_BT);
Something like this?