GATT icon indicating copy to clipboard operation
GATT copied to clipboard

Bluetooth Generic Attribute Profile (GATT) for Swift (Supports Linux)

Results 2 GATT issues
Sort by recently updated
recently updated
newest added

I'm trying to implement a peripheral on a Pi that looks at the central's UUID on a willRead and figures out the reply based on some business logic. The problem...

With this test program: ```swift import GATT import Bluetooth import BluetoothLinux typealias LinuxCentral = GATTCentral guard let hostController = await HostController.default else { fatalError("No Bluetooth hardware available") } let central...