Demystifying iBeacons

Fred Brunel
Fred BrunelDirector of Engineering
Demystifying iBeacons
@fbrunel
What is iBeacon?
iBeacon is an indoor
positioning system
“a new class of low-powered,
low-cost transmitters that
can notify nearby iOS 7
devices of their presence.”
What it is good for?
A whole new level of
location awareness for
apps
An app will sense the
presence of a beacon
and can react on it
trail markers in a park,
exhibits in a museum, or
product displays in stores
Demystifying iBeacons
Demystifying iBeacons
How does it work?
A thin layer on top of
CoreBluetooth exposed
via CoreLocation
Bluetooth LE has two
core concepts
Devices can act as
peripherals or centrals
Peripherals advertise
services and expose
characteristics
Think of characteristics
as object properties
Centrals scans for
services; connects and
read/write characteristics
A beacon is a peripheral
that advertise information
but it’s not a BLE service
Beacon

Ad

Ad

Ad

Central
Proximity UUID

Major

Minor

Advertisement Packet

Tx Power
With that, an app
can do 4 things
1. Scan for beacons
identified with the same
proximity UUID
2. Detect if the device is in
the region of one or more
beacons (~70m)
3. Determine the close
proximity of a beacon
(ranging)
4. Use the minor/major
integers to
differentiate beacons
Apple has built iBeacon in
the CoreLocation API
Advertising a Beacon
NSUUID *proximityUUID =
[[NSUUID alloc] initWithUUIDString:@"39ED98FF-2900-441A-802F-9C398FC199D2"];
CLBeaconRegion *beaconRegion =
[[CLBeaconRegion alloc] initWithProximityUUID:proximityUUID
identifier:@"com.company.region"];
!
NSDictionary *beaconPeripheralData =
[beaconRegion peripheralDataWithMeasuredPower:@(-50)];
!
CBPeripheralManager *peripheralManager =
[[CBPeripheralManager alloc] initWithDelegate:self queue:nil options:nil];
[peripheralManager startAdvertising:beaconPeripheralData];
Monitoring Beacon
Regions
NSUUID *proximityUUID =
[[NSUUID alloc] initWithUUIDString:@"39ED98FF-2900-441A-802F-9C398FC199D2"];
CLBeaconRegion *beaconRegion =
[[CLBeaconRegion alloc] initWithProximityUUID:proximityUUID
identifier:@"com.company.region"];
!
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
[self.locationManager startMonitoringForRegion:beaconRegion];
- (void)locationManager:(CLLocationManager *)manager
didEnterRegion:(CLRegion *)region {
[self.locationManager startRangingBeaconsInRegion:region];
}
!
- (void)locationManager:(CLLocationManager *)manager
didExitRegion:(CLRegion *)region {
[self.locationManager stopRangingBeaconsInRegion:region];
}
!
- (void)locationManager:(CLLocationManager *)manager
didRangeBeacons:(NSArray *)beacons
inRegion:(CLBeaconRegion *)region {
if ([beacons count] > 0) {
CLBeacon *nearestExhibit = [beacons firstObject];

!
if (CLProximityNear == nearestExhibit.proximity) {
[self presentExhibitInfo:nearestExhibit.major.integerValue];
} else {
[self dismissExhibitInfo];
}
}
}
“One way to promote
consistent ranging results
in your app is to use
beacon ranging only while
your app is in the
foreground.”
“if your app is in the
foreground, it’s likely that
the device is in the user’s
hand.” — Apple BS Group.
iBea

con

Mythbusting
A. Beacons can be
precisely located.
Wrong.
Location is really
approximate due the signal
strength and environment
factors
B. Beacons can
push information.
Nope.
The app receives only a
minor/major number.
It had to fetch information
from the network or a local
database
iOS devices can’t be a
beacon and a bluetooth
service at the same time.
C. Beacon can be
detected in background.
Meh.
Region monitoring
changes happens between
4 and 15 minutes
Ranging doesn’t work in
background. You have to
open your app.
D. A beacon can
record who’s around.
What? No.
Beacons are just
advertising, they are not
aware of who’s listening
Ranging doesn’t work in
background. You have to
open your app.
E. Beacon can do
payments.
LOL. Stop it!
iBeacon is not enough, it’s
just location
F. iBeacon works on
other platforms.
Yes.
Support for Android exist
via 3rd parties. iBeacon
profile has been
documented
Demystifying iBeacons
Not all is lost!
It will improve but it’s still
radio technology.
Demystifying iBeacons
Demystifying iBeacons
Demystifying iBeacons
Thanks.
@fbrunel
1 of 61

Recommended

What can beacons do for your business? by
What can beacons do for your business?What can beacons do for your business?
What can beacons do for your business?kontakt.io
2.3K views45 slides
50 ideas for using beacons by
50 ideas for using beacons50 ideas for using beacons
50 ideas for using beaconsSinergia Labs
17.6K views15 slides
iBeacon – facts, architecture and applications by
iBeacon – facts, architecture and applicationsiBeacon – facts, architecture and applications
iBeacon – facts, architecture and applicationsdigital worx
36.6K views16 slides
Beacons: The Retail Revolution by
Beacons: The Retail RevolutionBeacons: The Retail Revolution
Beacons: The Retail Revolutionkontakt.io
6.2K views30 slides
Beacon by
BeaconBeacon
BeaconAnanth Kumar
3.9K views19 slides
Beacons Explained Slideshare by
Beacons Explained SlideshareBeacons Explained Slideshare
Beacons Explained SlideshareSarah Edwards
3.1K views10 slides

More Related Content

What's hot

Beacons by
Beacons Beacons
Beacons Rahul Dhabhai
1.2K views29 slides
Beacon Technology: What Brands and Marketers Need to Know by
Beacon Technology: What Brands and Marketers Need to KnowBeacon Technology: What Brands and Marketers Need to Know
Beacon Technology: What Brands and Marketers Need to KnowBBDO
10.1K views46 slides
The Internet of Things: BLE / Beacons / iBeacons by
The Internet of Things: BLE / Beacons / iBeaconsThe Internet of Things: BLE / Beacons / iBeacons
The Internet of Things: BLE / Beacons / iBeaconsVectorform
14.6K views28 slides
Introduction to Beacon technology by
Introduction to Beacon technology Introduction to Beacon technology
Introduction to Beacon technology Dylan Seychell
2K views31 slides
BEACON TECHNOLOGY OVERVIEW by
BEACON TECHNOLOGY OVERVIEWBEACON TECHNOLOGY OVERVIEW
BEACON TECHNOLOGY OVERVIEWDonnovan Andrews
8K views24 slides
In-Store Marketing via Micro-Location: Beacon by
In-Store Marketing via Micro-Location: BeaconIn-Store Marketing via Micro-Location: Beacon
In-Store Marketing via Micro-Location: BeaconDigitasLBi Paris
83K views32 slides

What's hot(20)

Beacon Technology: What Brands and Marketers Need to Know by BBDO
Beacon Technology: What Brands and Marketers Need to KnowBeacon Technology: What Brands and Marketers Need to Know
Beacon Technology: What Brands and Marketers Need to Know
BBDO10.1K views
The Internet of Things: BLE / Beacons / iBeacons by Vectorform
The Internet of Things: BLE / Beacons / iBeaconsThe Internet of Things: BLE / Beacons / iBeacons
The Internet of Things: BLE / Beacons / iBeacons
Vectorform14.6K views
Introduction to Beacon technology by Dylan Seychell
Introduction to Beacon technology Introduction to Beacon technology
Introduction to Beacon technology
Dylan Seychell2K views
In-Store Marketing via Micro-Location: Beacon by DigitasLBi Paris
In-Store Marketing via Micro-Location: BeaconIn-Store Marketing via Micro-Location: Beacon
In-Store Marketing via Micro-Location: Beacon
DigitasLBi Paris83K views
제1회 비코닉스 엔터프라이즈 비콘IoT 세미나 by beaconyx
제1회 비코닉스 엔터프라이즈 비콘IoT 세미나제1회 비코닉스 엔터프라이즈 비콘IoT 세미나
제1회 비코닉스 엔터프라이즈 비콘IoT 세미나
beaconyx1.5K views
Beacon Technology for Restaurants - Personalizing the On-Premise Experience by Rockbot
Beacon Technology for Restaurants - Personalizing the On-Premise ExperienceBeacon Technology for Restaurants - Personalizing the On-Premise Experience
Beacon Technology for Restaurants - Personalizing the On-Premise Experience
Rockbot1.7K views
What are beacons and how do they work? by kontakt.io
What are beacons and how do they work?What are beacons and how do they work?
What are beacons and how do they work?
kontakt.io5.4K views
iBeacon, BLE and The Future of Engagement: Dsrupted Conference by Doug Thompson
iBeacon, BLE and The Future of Engagement: Dsrupted ConferenceiBeacon, BLE and The Future of Engagement: Dsrupted Conference
iBeacon, BLE and The Future of Engagement: Dsrupted Conference
Doug Thompson7.4K views
Imagining a World with Beacons by Self-employed
Imagining a World with Beacons Imagining a World with Beacons
Imagining a World with Beacons
Self-employed1.3K views
15 Ways to Use Beacons in 2015 by Locly
15 Ways to Use Beacons in 201515 Ways to Use Beacons in 2015
15 Ways to Use Beacons in 2015
Locly4.8K views
Crafting and Launching Successful Beacon Apps - 11 Keys to Success by Kurt McIntire
Crafting and Launching Successful Beacon Apps - 11 Keys to SuccessCrafting and Launching Successful Beacon Apps - 11 Keys to Success
Crafting and Launching Successful Beacon Apps - 11 Keys to Success
Kurt McIntire1.2K views
iBeacon Reality Check _ Essential Considerations for an iBeacon Deployment by AirTight Networks
iBeacon Reality Check  _ Essential Considerations for an iBeacon DeploymentiBeacon Reality Check  _ Essential Considerations for an iBeacon Deployment
iBeacon Reality Check _ Essential Considerations for an iBeacon Deployment
AirTight Networks4.1K views
What’s new in beacon tech, 2017? by Kurt McIntire
What’s new in beacon tech, 2017?What’s new in beacon tech, 2017?
What’s new in beacon tech, 2017?
Kurt McIntire442 views
iBeacons – Fad Or Trend? The Use-Cases For Retail And Omni-Channel Solutions by Stefan Wolpers
iBeacons – Fad Or Trend? The Use-Cases For Retail And Omni-Channel SolutionsiBeacons – Fad Or Trend? The Use-Cases For Retail And Omni-Channel Solutions
iBeacons – Fad Or Trend? The Use-Cases For Retail And Omni-Channel Solutions
Stefan Wolpers35.9K views

Similar to Demystifying iBeacons

Mobile development in age of Internet of Things and programming Apple Watch by
Mobile development in age of Internet of Things and programming Apple WatchMobile development in age of Internet of Things and programming Apple Watch
Mobile development in age of Internet of Things and programming Apple WatchJanusz Chudzynski
723 views24 slides
Using iBeacons in Titanium by
Using iBeacons in TitaniumUsing iBeacons in Titanium
Using iBeacons in TitaniumMobile Data Systems Ltd.
5.8K views39 slides
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE by
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLECómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLESolstice Mobile Argentina
368 views35 slides
Elevate: an iBeacon experience made by Touchwonders by
Elevate: an iBeacon experience made by TouchwondersElevate: an iBeacon experience made by Touchwonders
Elevate: an iBeacon experience made by TouchwondersFabio Milano
713 views32 slides
X-platform iBeacon apps with Xamarin by
X-platform iBeacon apps with XamarinX-platform iBeacon apps with Xamarin
X-platform iBeacon apps with XamarinMark Radacz
1.5K views15 slides
Experimenting Monitoring and Proximity techniques using Android potential and... by
Experimenting Monitoring and Proximity techniques using Android potential and...Experimenting Monitoring and Proximity techniques using Android potential and...
Experimenting Monitoring and Proximity techniques using Android potential and...DuckMa
1.9K views26 slides

Similar to Demystifying iBeacons(20)

Mobile development in age of Internet of Things and programming Apple Watch by Janusz Chudzynski
Mobile development in age of Internet of Things and programming Apple WatchMobile development in age of Internet of Things and programming Apple Watch
Mobile development in age of Internet of Things and programming Apple Watch
Janusz Chudzynski723 views
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE by Solstice Mobile Argentina
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLECómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
Cómo Desarrollar Apps Que Interactúan Con El Mundo Real - iBeacons & BLE
Elevate: an iBeacon experience made by Touchwonders by Fabio Milano
Elevate: an iBeacon experience made by TouchwondersElevate: an iBeacon experience made by Touchwonders
Elevate: an iBeacon experience made by Touchwonders
Fabio Milano713 views
X-platform iBeacon apps with Xamarin by Mark Radacz
X-platform iBeacon apps with XamarinX-platform iBeacon apps with Xamarin
X-platform iBeacon apps with Xamarin
Mark Radacz1.5K views
Experimenting Monitoring and Proximity techniques using Android potential and... by DuckMa
Experimenting Monitoring and Proximity techniques using Android potential and...Experimenting Monitoring and Proximity techniques using Android potential and...
Experimenting Monitoring and Proximity techniques using Android potential and...
DuckMa1.9K views
Droid con 2015 - experimenting monitoring and proximity techniques using andr... by Commit University
Droid con 2015 - experimenting monitoring and proximity techniques using andr...Droid con 2015 - experimenting monitoring and proximity techniques using andr...
Droid con 2015 - experimenting monitoring and proximity techniques using andr...
Commit University842 views
Gigigo Keynote - Geofences & iBeacons by Alex Rupérez
Gigigo Keynote - Geofences & iBeaconsGigigo Keynote - Geofences & iBeacons
Gigigo Keynote - Geofences & iBeacons
Alex Rupérez127.3K views
Building Location Aware Mobile Apps with iBeacons by Heather Downing
Building Location Aware Mobile Apps with iBeaconsBuilding Location Aware Mobile Apps with iBeacons
Building Location Aware Mobile Apps with iBeacons
Heather Downing696 views
Workshop: Building location-aware mobile apps with iBeacons by Heather Downing
Workshop: Building location-aware mobile apps with iBeaconsWorkshop: Building location-aware mobile apps with iBeacons
Workshop: Building location-aware mobile apps with iBeacons
Heather Downing328 views
AltBeacon in the IoT by AntonioIonta
AltBeacon in the IoTAltBeacon in the IoT
AltBeacon in the IoT
AntonioIonta412 views
Getting started-with-i beacon by wlasoi lasoi
Getting started-with-i beaconGetting started-with-i beacon
Getting started-with-i beacon
wlasoi lasoi35 views
Intro to iBeacon and Bluetooth Low Energy by Kurt McIntire
Intro to iBeacon and Bluetooth Low EnergyIntro to iBeacon and Bluetooth Low Energy
Intro to iBeacon and Bluetooth Low Energy
Kurt McIntire14.2K views
Location based advertisement system with voice announcement system by Subhash Suman
Location based advertisement system with voice announcement systemLocation based advertisement system with voice announcement system
Location based advertisement system with voice announcement system
Subhash Suman1.8K views
Internet of things, and rise of ibeacons by Janusz Chudzynski
Internet of things, and rise of ibeaconsInternet of things, and rise of ibeacons
Internet of things, and rise of ibeacons
Janusz Chudzynski775 views
bluepath Software Development Kit for iOS and Android SDK by bluepath
bluepath Software Development Kit for iOS and Android SDKbluepath Software Development Kit for iOS and Android SDK
bluepath Software Development Kit for iOS and Android SDK
bluepath386 views
Building a Mobile Location Aware System with Beacons by Tim Messerschmidt
Building a Mobile Location Aware System with BeaconsBuilding a Mobile Location Aware System with Beacons
Building a Mobile Location Aware System with Beacons
Tim Messerschmidt1.9K views
Developing context aware applications with iBeacons technology by Suresh Balla
Developing context aware applications with iBeacons technologyDeveloping context aware applications with iBeacons technology
Developing context aware applications with iBeacons technology
Suresh Balla1.2K views
Stop freakin it's just a beacon seattle tech forum by James Senior
Stop freakin it's just a beacon   seattle tech forumStop freakin it's just a beacon   seattle tech forum
Stop freakin it's just a beacon seattle tech forum
James Senior1.2K views

Recently uploaded

Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu... by
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...NUS-ISS
37 views54 slides
Java Platform Approach 1.0 - Picnic Meetup by
Java Platform Approach 1.0 - Picnic MeetupJava Platform Approach 1.0 - Picnic Meetup
Java Platform Approach 1.0 - Picnic MeetupRick Ossendrijver
25 views39 slides
Throughput by
ThroughputThroughput
ThroughputMoisés Armani Ramírez
36 views11 slides
Future of Learning - Khoong Chan Meng by
Future of Learning - Khoong Chan MengFuture of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan MengNUS-ISS
33 views7 slides
Understanding GenAI/LLM and What is Google Offering - Felix Goh by
Understanding GenAI/LLM and What is Google Offering - Felix GohUnderstanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix GohNUS-ISS
41 views33 slides
Future of Learning - Yap Aye Wee.pdf by
Future of Learning - Yap Aye Wee.pdfFuture of Learning - Yap Aye Wee.pdf
Future of Learning - Yap Aye Wee.pdfNUS-ISS
41 views11 slides

Recently uploaded(20)

Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu... by NUS-ISS
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
NUS-ISS37 views
Future of Learning - Khoong Chan Meng by NUS-ISS
Future of Learning - Khoong Chan MengFuture of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan Meng
NUS-ISS33 views
Understanding GenAI/LLM and What is Google Offering - Felix Goh by NUS-ISS
Understanding GenAI/LLM and What is Google Offering - Felix GohUnderstanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix Goh
NUS-ISS41 views
Future of Learning - Yap Aye Wee.pdf by NUS-ISS
Future of Learning - Yap Aye Wee.pdfFuture of Learning - Yap Aye Wee.pdf
Future of Learning - Yap Aye Wee.pdf
NUS-ISS41 views
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen... by NUS-ISS
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
NUS-ISS28 views
The Importance of Cybersecurity for Digital Transformation by NUS-ISS
The Importance of Cybersecurity for Digital TransformationThe Importance of Cybersecurity for Digital Transformation
The Importance of Cybersecurity for Digital Transformation
NUS-ISS27 views
Transcript: The Details of Description Techniques tips and tangents on altern... by BookNet Canada
Transcript: The Details of Description Techniques tips and tangents on altern...Transcript: The Details of Description Techniques tips and tangents on altern...
Transcript: The Details of Description Techniques tips and tangents on altern...
BookNet Canada130 views
Empathic Computing: Delivering the Potential of the Metaverse by Mark Billinghurst
Empathic Computing: Delivering  the Potential of the MetaverseEmpathic Computing: Delivering  the Potential of the Metaverse
Empathic Computing: Delivering the Potential of the Metaverse
Mark Billinghurst470 views
AI: mind, matter, meaning, metaphors, being, becoming, life values by Twain Liu 刘秋艳
AI: mind, matter, meaning, metaphors, being, becoming, life valuesAI: mind, matter, meaning, metaphors, being, becoming, life values
AI: mind, matter, meaning, metaphors, being, becoming, life values
Attacking IoT Devices from a Web Perspective - Linux Day by Simone Onofri
Attacking IoT Devices from a Web Perspective - Linux Day Attacking IoT Devices from a Web Perspective - Linux Day
Attacking IoT Devices from a Web Perspective - Linux Day
Simone Onofri15 views
Perth MeetUp November 2023 by Michael Price
Perth MeetUp November 2023 Perth MeetUp November 2023
Perth MeetUp November 2023
Michael Price15 views
STPI OctaNE CoE Brochure.pdf by madhurjyapb
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdf
madhurjyapb12 views
Five Things You SHOULD Know About Postman by Postman
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About Postman
Postman27 views
DALI Basics Course 2023 by Ivory Egg
DALI Basics Course  2023DALI Basics Course  2023
DALI Basics Course 2023
Ivory Egg14 views
The details of description: Techniques, tips, and tangents on alternative tex... by BookNet Canada
The details of description: Techniques, tips, and tangents on alternative tex...The details of description: Techniques, tips, and tangents on alternative tex...
The details of description: Techniques, tips, and tangents on alternative tex...
BookNet Canada121 views
Special_edition_innovator_2023.pdf by WillDavies22
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdf
WillDavies2216 views

Demystifying iBeacons