Ricerca…


Parametri

parametri Dettagli
manager Riferimento CLLocationManager
regione CLRegion potrebbe essere una regione circolare (area geofence o beacon)
fari Array di CLBeacon contiene tutti i beacon a distanza

Osservazioni

I beacon sono oggetti IOT. Ci stiamo concentrando su quelli che sono conformi al protocollo iBeacon uno standard Apple. Ogni faro è un dispositivo a senso unico che trasmette 3 oggetti

  1. UUID
  2. Maggiore
  3. Minore

Possiamo scansionare iBeacons impostando il nostro oggetto CLLocation manager per cercare beacon per un particolare UUID. Verranno scansionati tutti i beacon con l'UUID specificato.

CLLocation Manager offre anche chiamate su entrata e uscita dalla regione beacon.

iBeacon Basic Operation

  1. Setup monitoraggio beacon
func initiateRegion(ref:BeaconHandler){
    let uuid: NSUUID = NSUUID(UUIDString: "<UUID>")
    let beacon = CLBeaconRegion(proximityUUID: uuid, identifier: "")
    locationManager?.requestAlwaysAuthorization()    //cllocation manager obj.
    beacon?.notifyOnEntry = true
    beacon?.notifyOnExit = true
    beacon?.notifyEntryStateOnDisplay = true
    locationManager?.startMonitoringForRegion(beacon!)
    locationManager?.delegate = self;
    // Check if beacon monitoring is available for this device
    if (!CLLocationManager.isMonitoringAvailableForClass(CLBeaconRegion)) {
        print("error")
    }
    locationManager!.startRangingBeaconsInRegion(self.beacon!)
}
  1. Il gestore località entra e esce dalla regione
func locationManager(manager: CLLocationManager, didEnterRegion region: CLRegion) {
    if(region.isKindOfClass(CLBeaconRegion)) {
        locationManager!.startRangingBeaconsInRegion(self.beacon!)
    }
}
    
func locationManager(manager: CLLocationManager, didExitRegion region: CLRegion) {
    if(region.isKindOfClass(CLBeaconRegion)) {
        locationManager!.stopRangingBeaconsInRegion(self.beacon!)
    }
}
  1. Indicatore di raggio del local manager
func locationManager(manager: CLLocationManager, didRangeBeacons beacons: [CLBeacon], inRegion region: CLBeaconRegion) {
    print(beacons.first.major)
}

Scansione di beacon specifici

 beacon = CLBeaconRegion(proximityUUID: <#NSUUID#>, major: <#CLBeaconMajorValue#>, identifier: <#String#>) // listening to all beacons with given UUID and major value
 beacon =    CLBeaconRegion(proximityUUID: <##NSUUID#>, major: <##CLBeaconMajorValue#>, minor: <##CLBeaconMinorValue#>, identifier: <##String#>) // listening to all beacons with given UUID and major and minor value

Ibeacons che vanno

Innanzitutto, devi richiedere l'autorizzazione dei servizi di localizzazione

let locationManager = CLLocationManager()
locationManager.delegate = self
locationManager.requestWhenInUseAuthorization()
// OR locationManager.requestAlwaysAuthorization()

Quindi puoi ottenere tutte le informazioni di didRangeBeacons all'interno di didRangeBeacons

func locationManager(manager: CLLocationManager, didRangeBeacons beacons: [CLBeacon], inRegion region: CLBeaconRegion) {
    for beacon in beacons {
        print(beacon.major)
        print(beacon.minor)
    }
}


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow