本文整理汇总了Golang中github.com/paypal/gatt.Peripheral.Name方法的典型用法代码示例。如果您正苦于以下问题:Golang Peripheral.Name方法的具体用法?Golang Peripheral.Name怎么用?Golang Peripheral.Name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/paypal/gatt.Peripheral
的用法示例。
在下文中一共展示了Peripheral.Name方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: onPeriphDiscovered
func onPeriphDiscovered(p gatt.Peripheral, a *gatt.Advertisement, rssi int) {
fmt.Printf("\nPeripheral ID:%s, NAME:(%s)\n", p.ID(), p.Name())
fmt.Println(" Local Name =", a.LocalName)
fmt.Println(" TX Power Level =", a.TxPowerLevel)
fmt.Println(" Manufacturer Data =", a.ManufacturerData)
fmt.Println(" Service Data =", a.ServiceData)
}
示例2: onPeriphDiscovered
func onPeriphDiscovered(p gatt.Peripheral, a *gatt.Advertisement, rssi int) {
if !strings.Contains(a.LocalName, "SensorTag") {
return
}
// Stop scanning once we've got the peripheral we're looking for.
p.Device().StopScanning()
log.Printf("\nPeripheral ID:%s, NAME:(%s)\n", p.ID(), p.Name())
log.Println(" Local Name =", a.LocalName)
log.Println(" TX Power Level =", a.TxPowerLevel)
log.Println(" Manufacturer Data =", a.ManufacturerData)
log.Println(" Service Data =", a.ServiceData)
log.Println("")
p.Device().Connect(p)
}
示例3: onPeriphDiscovered
func onPeriphDiscovered(p gatt.Peripheral, a *gatt.Advertisement, rssi int) {
id := strings.ToUpper(flag.Args()[0])
if strings.ToUpper(p.ID()) != id {
return
}
// Stop scanning once we've got the peripheral we're looking for.
p.Device().StopScanning()
fmt.Printf("\nPeripheral ID:%s, NAME:(%s)\n", p.ID(), p.Name())
fmt.Println(" Local Name =", a.LocalName)
fmt.Println(" TX Power Level =", a.TxPowerLevel)
fmt.Println(" Manufacturer Data =", a.ManufacturerData)
fmt.Println(" Service Data =", a.ServiceData)
fmt.Println("")
p.Device().Connect(p)
}
示例4: onPeriphDiscovered
func onPeriphDiscovered(p gatt.Peripheral, a *gatt.Advertisement, rssi int) {
if strings.ToUpper(p.ID()) != strings.ToUpper(baseDeviceId) {
return
}
// Stop scanning once we've got the peripheral we're looking for.
p.Device().StopScanning()
if len(p.Name()) > 0 {
log.Println("Device found: ", p.Name())
} else {
log.Println("Device found")
}
log.Println(" Local Name =", a.LocalName)
log.Println(" TX Power Level =", a.TxPowerLevel)
log.Println(" Manufacturer Data =", a.ManufacturerData)
log.Println(" Service Data =", a.ServiceData)
p.Device().Connect(p)
}