0
我对使用Swift进行编码非常陌生,所以我希望有人可以用简单的答案帮助我。BLE更改要写入的UUID特征
我基本上试图发送一个特征UUID到一个写功能,并切换写功能写入该UUID。它会继续使用我原来的那个。是否有捷径可寻?我已经发现了所有的外围设备,服务,特性,并且已经连接到了正确的一个。我只是无法让它切换到正确的特征UUID。任何帮助都是极好的!我是一个固件/硬件开发人员,所以Swift和Xcode对我来说并不是一件普通的事情。
func writePosition(position: UInt16, characteristicUUID: CBUUID) {
var position_low: UInt8 = 0
var position_high: UInt8 = 0
var position16: UInt16 = 0;
position_low = (UInt8) (position) // (position)
position_high = (UInt8)((position >> 8))
// See if characteristic has been discovered before writing to it
if self.positionCharacteristic == nil {
return
}
var bytes:[UInt8] = [0x00, 0x00]
bytes[1] = 0x01 //low byte is [1], high byte is [0] so reversed from LightBlue app
bytes[1] = position_low //low byte is [1], high byte is [0] so reversed from LightBlue app
bytes[0] = position_high //low byte is [1], high byte is [0] so reversed from LightBlue app
let uuidsForBTService: [CBUUID] = [characteristicUUID]
//new code to try and set the correct UUID automatically
for service in peripheral!.services
{
if service.UUID == BLEServiceUUID
{
peripheral!.discoverCharacteristics(uuidsForBTService, forService: service as! CBService)
}
}
//find the correct characteristic to set to and then write to it
//go through each characteristic and look at its UUID then if it matches, set us to that one so we write to it later on
for characteristic in self.peripheral!.services {
if characteristic.UUID == characteristicUUID//Position1PWMCharUUID
{
self.positionCharacteristic = (characteristic as! CBCharacteristic)
peripheral!.setNotifyValue(true, forCharacteristic: characteristic as! CBCharacteristic)
// Send notification that Bluetooth is connected and all required characteristics are discovered
self.sendBTServiceNotificationWithIsBluetoothConnected(true)
}
}
//end of code to set the UUID
// Need a mutable var to pass to writeValue function
//var positionValue = position
//let data = NSData(bytes: &positionValue, length: sizeof(UInt16))
let data = NSData(bytes: bytes, length: 2)
self.peripheral?.writeValue(data, forCharacteristic: self.positionCharacteristic, type: CBCharacteristicWriteType.WithResponse)
}
纠正我,如果我不明白你的问题。 基本上你需要写入任何你得到的参数uuid。我对吗? –