Send more data to iBeacon

I am working on an iBeacon project where I want to send text information along with iBeacon data. Now I use the iPhone as an iBeacon. I cannot find a way to configure data transfer as well as reception using CoreLocation.

I can do this if both the sender and the receiver have Bluetooth mode. I went through similar questions ( Question , Question2 ), and they are different from what I want.

+5
source share
2 answers

You cannot do this with iBeacon. You will need your device to work as an iBeacon and a BLE peripheral device. Once you enter the beacon zone, you will need to initiate a connection to the BLE peripheral device using Core Bluetooth to read additional specifications.

+3
source

I have already worked on jaalee beacon and it works as a push notification.

 //start Monitoring for beacon locationManager:(JLEBeaconManager *)manager didStartMonitoringForRegion:(JLEBeaconRegion *)region { [manager requestStateForRegion:region]; [beaconManager startRangingBeaconsInRegion:region]; } //Enter method beaconManager:(JLEBeaconManager *)manager didEnterRegion:(JLEBeaconRegion *)region //Exit method beaconManager:(JLEBeaconManager *)manager didExitRegion:(JLEBeaconRegion *)region 
0
source

Source: https://habr.com/ru/post/1208208/


All Articles