獲取代表設備提供的 Bluetooth® Low Energy 服務的 BLEService。
用法
bleDevice.service(index)
bleDevice.service(uuid)
bleDevice.service(uuid, index)
參數
- index: 服務index
- uuid:uuid(作為 String )
返回
- BLEService對於提供的參數
示例
// begin initialization
if (!BLE.begin()) {
Serial.println("starting Bluetooth® Low Energy module failed!");
while (1);
}
Serial.println("BLE Central scan");
// start scanning for peripheral
BLE.scan();
BLEDevice peripheral = BLE.available();
if (peripheral) {
// ...
Serial.println("Connecting ...");
if (peripheral.connect()) {
Serial.println("Connected");
} else {
Serial.println("Failed to connect!");
return;
}
// discover peripheral attributes
Serial.println("Discovering attributes ...");
if (peripheral.discoverAttributes()) {
Serial.println("Attributes discovered");
} else {
Serial.println("Attribute discovery failed!");
peripheral.disconnect();
return;
}
BLEService batteryService = peripheral.service("180f");
if (batteryService) {
// use the service
} else {
Serial.println("Peripheral does NOT have battery service");
}
// ...
}
相關用法
- Arduino ArduinoBLE - bleDevice.serviceCount()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.advertisedServiceUuidCount()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.hasCharacteristic()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.localName()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.poll()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.hasService()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.deviceName()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.disconnect()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.hasAdvertisedServiceUuid()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.address()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.advertisedServiceUuid()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.appearance()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.discoverService()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.hasLocalName()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.characteristic()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.connect()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.discoverAttributes()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.rssi()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.connected()用法及代碼示例
- Arduino ArduinoBLE - bleDevice.characteristicCount()用法及代碼示例
- Arduino ArduinoBLE - bleDescriptor.read()用法及代碼示例
- Arduino ArduinoBLE - bleDescriptor.value()用法及代碼示例
- Arduino ArduinoBLE - bleDescriptor.valueLength()用法及代碼示例
- Arduino ArduinoBLE - bleDescriptor.valueSize()用法及代碼示例
- Arduino ArduinoBLE - bleDescriptor.uuid()用法及代碼示例
注:本文由純淨天空篩選整理自arduino.cc大神的英文原創作品 ArduinoBLE - bleDevice.service()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。