Skip to content

Commit

Permalink
Merge pull request #1 from stackia/device-address-support
Browse files Browse the repository at this point in the history
Add support for fetching bluetooth device MAC addresses
  • Loading branch information
tekezo authored May 15, 2023
2 parents 2ff0fd4 + 280573d commit 480d94c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/pqrs/osx/iokit_hid_device.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ class iokit_hid_device final {
return find_string_property(CFSTR(kIOHIDTransportKey));
}

std::optional<std::string> find_device_address(void) const {
return find_string_property(CFSTR("DeviceAddress"));
}

// Note:
// Input Monitoring permission user approval is required since macOS Catalina (10.15).
std::vector<cf::cf_ptr<IOHIDElementRef>> make_elements(void) {
Expand Down

0 comments on commit 480d94c

Please sign in to comment.