8 #ifndef COMPONENTS_CPP_UTILS_BLEADDRESS_H_
9 #define COMPONENTS_CPP_UTILS_BLEADDRESS_H_
10 #include "sdkconfig.h"
11 #if defined(CONFIG_BT_ENABLED)
12 #include <esp_gap_ble_api.h>
23 BLEAddress(esp_bd_addr_t address);
24 BLEAddress(std::string stringAddress);
25 bool equals(BLEAddress otherAddress);
26 esp_bd_addr_t* getNative();
27 std::string toString();
30 esp_bd_addr_t m_address;