Skills Plugins MCP Prompt Model 博客 我的中心

core-bluetooth

Build direct Bluetooth Low Energy workflows with Core Bluetooth. Use when implementing BLE central or peripheral GATT communication, scanning or connecting with CBCentralManager, discovering services and characteristics, reading/writing/subscribing with CBPeripheral, publishing local services with CBPeripheralManager, handling Bluetooth authorization, background BLE modes, state restoration, write flow control, or CBUUID-based workflows. For privacy-preserving accessory setup/picker flows, use accessorysetupkit first and return here for post-setup GATT communication.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=dpearson2699-swift-ios-skills-skills-core-bluetooth-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name core-bluetooth description Build direct Bluetooth Low Energy workflows with Core Bluetooth. Use when implementing BLE central or peripheral GATT communication, scanning or connecting with CBCentralManager, discovering services and characteristics, reading/writing/subscribing with CBPeripheral, publishing local services with CBPeripheralManager, handling Bluetooth authorization, background BLE modes, state restoration, write flow control, or CBUUID-based workflows. For privacy-preserving accessory setup/picker flows, use accessorysetupkit first and return here for post-setup GATT communication. Core Bluetooth Scan for, connect to, and exchange data with Bluetooth Low Energy (BLE) devices. Covers the central role (scanning and connecting to peripherals), the peripheral role (advertising services), background modes, and state restoration. Use accessorysetupkit for privacy-preserving accessory discovery and setup; use this skill for direct Core Bluetooth GATT communication. Contents Setup Central Role: Scanning Central Role: Connecting Discovering Services and Characteristics Reading, Writing, and Notifications Peripheral Role: Advertising Background BLE State Restoration Common Mistakes Review Checklist References Setup Info.plist Keys Key Purpose NSBluetoothAlwaysUsageDescription Required. Explains why the app uses Bluetooth UIBackgroundModes with bluetooth-central Background scanning and connecting UIBackgroundModes with bluetooth-peripheral Background advertising Bluetooth Authorization Core Bluetooth has no explicit permission request API. Add NSBluetoothAlwaysUsageDescription , create the manager when the app is ready for Bluetooth access, then check manager.authorization and manager.state . Treat .denied and .restricted as terminal until the user changes Settings; wait for .poweredOn before scanning, connecting, advertising, or publishing services. Central Role: Scanning Creating the Central Manager Always wait for the poweredOn state before scanning. import CoreBluetooth final class BluetoothManager : NSObject , CBCentralManagerDelegate { private var centralManager: CBCentralManager ! private var discoveredPeripheral: CBPeripheral ? override init () { super . init () centralManager = CBCentralManager (delegate: self , queue: nil ) } func centralManagerDidUpdateState ( _ central : CBCentralManager ) { guard central.state == .poweredOn else { return } startScanning() } } Scanning for Peripherals Scan for specific service UUIDs to save power. Pass nil to discover all peripherals (not recommended in production). let heartRateServiceUUID = CBUUID (string: "180D" ) func startScanning () { centralManager.scanForPeripherals( withServices: [heartRateServiceUUID], options: [CBCentralManagerScanOptionAllowDuplicatesKey: false ] ) } func centralManager ( _ central : CBCentralManager , didDiscover peripheral : CBPeripheral , advertisementData : [ String : Any ], rssi RSSI : NSNumber ) { guard RSSI .intValue > - 70 else { return } // Filter weak signals // IMPORTANT: Retain the peripheral -- it will be deallocated otherwise discoveredPeripheral = peripheral centralManager.stopScan() centralManager.connect(peripheral, options: nil ) } Central Role: Connecting func centralManager ( _ central : CBCentralManager , didConnect peripheral : CBPeripheral ) { peripheral.delegate = self peripheral.discoverServices([heartRateServiceUUID]) } func centralManager ( _ central : CBCentralManager , didDisconnectPeripheral peripheral : CBPeripheral , timestamp : CFAbsoluteTime , isReconnecting : Bool , error : Error ? ) { if isReconnecting { // System is automatically reconnecting return } // Handle disconnection -- optionally reconnect discoveredPeripheral = nil } Discovering Services and Characteristics Implement CBPeripheralDelegate to walk the service/characteristic tree. extension BluetoothManager : CBPeripheralDelegate { func peripheral ( _ peripheral : CBPeripheral , didDiscoverServices error : Error ? ) { guard let services = peripheral.services else { return } for service in services { peripheral.discoverCharacteristics( nil , for: service) } } func peripheral ( _ peripheral : CBPeripheral , didDiscoverCharacteristicsFor service : CBService , error : Error ? ) { guard let characteristics = service.characteristics else { return } for characteristic in characteristics { if characteristic.properties.contains(.notify) { peripheral.setNotifyValue( true , for: characteristic) } if characteristic.properties.contains(.read) { peripheral.readValue(for: characteristic) } } } } Reading, Writing, and Notifications Reading a Value func peripheral ( _ peripheral : CBPeripheral , didUpdateValueFor characteristic : CBCharacteristic , error : Error ? ) { guard let data = characteristic.value else { return } switch characteristic.uuid { case CBUUID (string: "2A37" ): if let heartRate = parseHeartRate(data) { print ( "Heart rate: \(heartRate) bpm" ) } case CBUUID (string: "2A19" ): let batteryLevel = data.first.map { Int ( $0 ) } ?? 0 print ( "Battery: \(batteryLevel) %" ) default : break } } private func parseHeartRate ( _ data : Data ) -> Int ? { guard data.count >= 2 else { return nil } let flags = data[ 0 ] let is16Bit = (flags & 0x01 ) != 0 if is16Bit { guard data.count >= 3 else { return nil } return Int (data[ 1 ]) | ( Int (data[ 2 ]) << 8 ) } else { return Int (data[ 1 ]) } } Writing a Value func writeValue ( _ data : Data , to characteristic : CBCharacteristic , on peripheral : CBPeripheral , preferResponse : Bool = true ) { let type: CBCharacteristicWriteType if preferResponse, characteristic.properties.contains(.write) { type = .withResponse } else if characteristic.properties.contains(.writeWithoutResponse), peripheral.canSendWriteWithoutResponse { type = .withoutResponse } else if characteristic.properties.contains(.write) { type = .withResponse } else { return } guard data.count <= peripheral.maximumWriteValueLength(for: type) else { return } peripheral.writeValue(data, for: characteristic, type: type) } // Confirmation callback for .withResponse writes. func peripheral ( _ peripheral : CBPeripheral , didWriteValueFor characteristic : CBCharacteristic , error : Error ? ) { if let error { print ( "Write failed: \(error.localizedDescription) " ) } } // Resume queued .withoutResponse writes here. func peripheralIsReady ( toSendWriteWithoutResponse peripheral : CBPeripheral ) {} Subscribing to Notifications // Subscribe peripheral.setNotifyValue( true , for: characteristic) // Unsubscribe peripheral.setNotifyValue( false , for: characteristic) // Confirmation func peripheral ( _ peripheral : CBPeripheral , didUpdateNotificationStateFor characteristic : CBCharacteristic , error : Error ? ) { if characteristic.isNotifying { print ( "Now receiving notifications for \(characteristic.uuid) " ) } } Peripheral Role: Advertising Publish services from the local device using CBPeripheralManager . final class BLEPeripheralManager : NSObject , CBPeripheralManagerDelegate { private var peripheralManager: CBPeripheralManager ! private let serviceUUID = CBUUID (string: "12345678-1234-1234-1234-123456789ABC" ) private let charUUID = CBUUID (string: "12345678-1234-1234-1234-123456789ABD" ) override init () { super . init () peripheralManager = CBPeripheralManager (delegate: self , queue: nil ) } func peripheralManagerDidUpdateState ( _ peripheral : CBPeripheralManager ) { guard peripheral.state == .poweredOn else { return } setupService() } private func setupService () { let characteristic = CBMutableCharacteristic ( type: charUUID, properties: [.read, .notify], value: nil , permissions: [.readable] ) let service = CBMutableService (type: serviceUUID, primary: true ) service.characteristics = [characteristic] peripheralManager.add(service) } func peripheralManager ( _ peripheral : CBPeripheralManager , didAdd service : CBService , error : Error ? ) { guard error == nil else { return } peripheralManager.startAdvertising([ CBAdvertisementDataServiceUUIDsKey: [serviceUUID], CBAdvertisementDataLocalNameKey: "MyDevice" ]) } } Background BLE Background Central Mode Add bluetooth-central to UIBackgroundModes . In the background: Scanning must specify one or more service UUIDs; nil scans are foreground-only Scan options, including CBCentralManagerScanOptionAllowDuplicatesKey , have no effect Background Peripheral Mode Add bluetooth-peripheral to UIBackgroundModes . In the background: Without this mode, published service contents are disabled while suspended The local name is not advertised Service UUIDs move to the overflow area and require explicit service scans State Restoration State restoration allows the system to re-create your central or peripheral manager after your app is terminated and relaunched for a BLE event. Central Manager State Restoration // 1. Create with a restoration identifier centralManager = CBCentralManager ( delegate: self , queue: nil , options: [CBCentralManagerOptionRestoreIdentifierKey: "myCentral" ] ) // 2. Implement the restoration delegate method func centralManager ( _ central : CBCentralManager , willRestoreState dict : [ String : Any ] ) { if let peripherals = dict[ CBCentralManagerRestoredStatePeripheralsKey ] as? [ CBPeripheral ] { for peripheral in peripherals { // Re-assign delegate and retain peripheral.delegate = self discoveredPeripheral = peripheral } } let restoredServices = dict[ CBCentralManagerRestoredStateScanServicesKey ] as? [ CBUUID ] let restoredOptions = dict[ CBCentralManagerRestoredStateScanOptionsKey ] as? [ String : Any ] // Resume scanning with restoredServices/restoredOptions if still needed. } Peripheral Manager State Restoration peripheralManager = CBPeripheralManager ( delegate: self , queue: nil , options: [CBPeripheralManagerOptionRestoreIdentifierKey: "myPeripheral" ] ) func peripheralManager ( _ peripheral : CBPeripheralManager , willRestoreState dict : [ String : Any ] ) { let services = dict[ CBPeripheralManagerRestoredStateServicesKey ] as? [ CBMutableService ] let advertisement = dict[ CBPeripheralManagerRestoredStateAdvertisementDataKey ] as? [ String : Any ] // Reconnect app state to restored services/advertisement as needed. } Common Mistakes Mistake Fix Scan/connect before .poweredOn Start BLE work from centralManagerDidUpdateState . Discovered peripheral is not retained Hold a strong reference through connection and discovery. Production scan passes nil services Filter by the service UUIDs the feature needs. Service discovery begins before didConnect Advance only from delegate callbacks and handle failure/disconnect paths. Writes ignore characteristic properties or payload limits Select the supported write type, respect maximumWriteValueLength , and gate .withoutResponse on canSendWriteWithoutResponse . Review Checklist NSBluetoothAlwaysUsageDescription added to Info.plist All BLE operations gated on centralManagerDidUpdateState returning .poweredOn Discovered peripherals retained with a strong reference Scanning uses specific service UUIDs (not nil ) in production CBPeripheralDelegate set before calling discoverServices Characteristic properties checked before read/write/notify Write payloads stay within maximumWriteValueLength(for:) .withoutResponse writes honor canSendWriteWithoutResponse Background mode ( bluetooth-central or bluetooth-peripheral ) added if needed State restoration identifier set if app needs relaunch-on-BLE-event support willRestoreState delegate method implemented when using state restoration Scanning stopped after discovering the target peripheral Disconnection handled with optional automatic reconnect logic Write type matches characteristic properties ( .withResponse vs .withoutResponse ) References Extended patterns (reconnection strategies, data parsing, SwiftUI integration): references/ble-patterns.md Core Bluetooth framework CBCentralManager CBPeripheral CBPeripheralManager CBService CBCharacteristic CBUUID CBCentralManagerDelegate CBPeripheralDelegate NSBluetoothAlwaysUsageDescription CBManagerAuthorization scanForPeripherals(withServices:options:) startAdvertising(_:) writeValue(_:for:type:) maximumWriteValueLength(for:) canSendWriteWithoutResponse Configuring background execution modes
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。