SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Downloaden Sie, um offline zu lesen
APACHE SLING & FRIENDS TECH MEETUP 
BERLIN, 22-24 S EPTEMBER 2014 
Getting Started with iBeacons and AEM 
Bartek Soin, Adobe Global Shared Services
§ What is this iBeacon 
thing? 
§ How do I use it with 
AEM?
What is this iBeacon thing? 
adaptTo() 2014 3
§ iBeacon is a tiny computer 
§ Uses Bluetooth Smart (BLE) 
to broadcast its ID 
§ No 
pairing 
required 
§ Signal is picked up by 
different receivers 
§ Smartphone, Tablet, Google Glass... 
© Estimote 
adaptTo() 2014 4
§ Application handles events 
§ Even in the background and 
when the device is locked 
§ Dedicated app allows you to 
configure your beacons 
© Estimote 
adaptTo() 2014 5
© Estimote Source: Wikipedia 
adaptTo() 2014 6
§ iBeacon broadcasts its 
UUID + major + minor 
§ RSSI used to calculate 
distance 
§ 3 major zones: 
§ Far 
§ Near 
§ Immediate 
© Estimote 
adaptTo() 2014 7
© Estimote 
adaptTo() 2014 8
Applications 
Promotions & 
automatic payment 
Retail stores, cafes... 
Automatic check-in 
Airports, hotels, hospitals... 
Location-based 
information 
Airports, stadiums, museums, city guides... 
Home automation 
Lights, locks, garage doors... 
adaptTo() 2014 9
Pitfalls and shortcomings 
§ Bluetooth and location services have to be enabled 
§ Bluetooth waves are easily blocked 
§ Low accuracy and not very stable 
§ Rather unusable for positioning (trilateration) 
§ Battery drain in older phones 
§ Can be spoofed, applications need to handle 
security 
adaptTo() 2014 10
How do I use it in AEM? 
adaptTo() 2014 11
§ Mostly with Mobile Apps in AEM 6.0 
§ Ideas based on our POC-s for customers in 
hotel and media industry 
adaptTo() 2014 12
Authoring and simulation 
§ Custom Client Context store 
§ Segments based on beacon proximity 
§ Components to use in targeted experiences 
adaptTo() 2014 13
Runtime 
§ Necessary PhoneGap plugins 
§ Extension to Target component – support for 
targeted experiences in mobile apps 
§ Adobe Mobile Services 
§ AEM Targeting (in progress) 
adaptTo() 2014 14
Client Context store 
§ Similar to geolocation 
§ Configurable beacons: 
east-entrance,-30,40,orange, 
42041/42808 
§ Stores the distances in 
microlocation/distance-* 
properties 
adaptTo() 2014 15
Client Context store 
§ microlocation.jsp 
<div class="cq-cc-store"> 
<div class="cq-cc-content"> 
<c:forEach var="beacon" items="${properties.beacons}"> 
<!-- output beacon divs --> 
</c:forEach> 
<span class="user drag"></span> 
</div> 
<div class="cq-cc-clear"></div> 
</div> 
adaptTo() 2014 16
Client Context store 
§ script. js 
user.drag(function(ev, dd) { 
$('.microlocation .beacon').each(function(index, element) { 
store.setProperty('distance-' + beaconLabel, 
t.getDistance(user, beacon)); 
}); 
}); 
getDistance: function(user, beacon) { 
return Math.round(Math.sqrt(x * x + y * y)); 
} 
adaptTo() 2014 17
Building segments 
§ Use the Beacon Proximity component: 
§ ... or a script: 
parseInt(ClientContext.get('microlocation/distance-east-entrance')) < 85 
adaptTo() 2014 18
Additional components – local notification 
PhoneGap Local Notification plugin 
wrapped in AEM component 
localNotifier.addNotification({ 
alertBody: 'Hello World!’ 
}); 
adaptTo() 2014 19
Demo 
adaptTo() 2014 20
Summary 
§ iBeacons are all the hype now, don’t miss it 
§ AEM package: 
§ Still in development 
§ Relies on the Estimote SDK 
§ Let me know if you’d like to use it 
adaptTo() 2014 21
Thanks! 
bsoin@adobe.com 
adaptTo() 2014 22

Weitere ähnliche Inhalte

Andere mochten auch

Andere mochten auch (15)

Celador presentation
Celador presentationCelador presentation
Celador presentation
 
INNOVATIVE LESSON PLAN
INNOVATIVE LESSON PLANINNOVATIVE LESSON PLAN
INNOVATIVE LESSON PLAN
 
ONLINE ASSIGNMENT
ONLINE ASSIGNMENT ONLINE ASSIGNMENT
ONLINE ASSIGNMENT
 
Film powerpoint w Danielle
Film powerpoint w DanielleFilm powerpoint w Danielle
Film powerpoint w Danielle
 
LESSON TEMPLATE
LESSON TEMPLATE LESSON TEMPLATE
LESSON TEMPLATE
 
SIMPLE - dashboard for Learning evluation based on LVC
SIMPLE - dashboard for Learning evluation based on LVCSIMPLE - dashboard for Learning evluation based on LVC
SIMPLE - dashboard for Learning evluation based on LVC
 
Ivf success rate
Ivf success rateIvf success rate
Ivf success rate
 
Algebra
AlgebraAlgebra
Algebra
 
Slite recreational landscape - to design for biodiversity
Slite recreational landscape - to design for biodiversitySlite recreational landscape - to design for biodiversity
Slite recreational landscape - to design for biodiversity
 
BUTLLETÍ 61 COM SER FELIÇOS
BUTLLETÍ 61 COM SER FELIÇOSBUTLLETÍ 61 COM SER FELIÇOS
BUTLLETÍ 61 COM SER FELIÇOS
 
best ivf doctor in delhi
best ivf doctor in delhibest ivf doctor in delhi
best ivf doctor in delhi
 
ONLINE ASSIGNMENT
ONLINE ASSIGNMENT ONLINE ASSIGNMENT
ONLINE ASSIGNMENT
 
math+atwell+presentation
math+atwell+presentationmath+atwell+presentation
math+atwell+presentation
 
Positive mental health presentation for teachers
Positive mental health   presentation for teachersPositive mental health   presentation for teachers
Positive mental health presentation for teachers
 
INNOVATIVE LESSON PLAN
INNOVATIVE LESSON PLANINNOVATIVE LESSON PLAN
INNOVATIVE LESSON PLAN
 

Ähnlich wie Getting started with iBeacons and AEM

Business Case for Investment Outline PrototypesEnvironment Proc.docx
Business Case for Investment Outline PrototypesEnvironment Proc.docxBusiness Case for Investment Outline PrototypesEnvironment Proc.docx
Business Case for Investment Outline PrototypesEnvironment Proc.docx
humphrieskalyn
 
offerings managed services NOC : network operations center
offerings managed services NOC : network operations centerofferings managed services NOC : network operations center
offerings managed services NOC : network operations center
Arjun Kumar Marya
 
codeBeamer Eclipse DemoCamp-23.11.2010
codeBeamer Eclipse DemoCamp-23.11.2010codeBeamer Eclipse DemoCamp-23.11.2010
codeBeamer Eclipse DemoCamp-23.11.2010
Intland Software GmbH
 

Ähnlich wie Getting started with iBeacons and AEM (20)

iPhone App Development
iPhone App Development iPhone App Development
iPhone App Development
 
Mobile app development
Mobile app developmentMobile app development
Mobile app development
 
Swift Development
Swift DevelopmentSwift Development
Swift Development
 
Android App Development
Android App DevelopmentAndroid App Development
Android App Development
 
Resume
ResumeResume
Resume
 
“Deep Learning on Mobile Devices,” a Presentation from Siddha Ganju
“Deep Learning on Mobile Devices,” a Presentation from Siddha Ganju“Deep Learning on Mobile Devices,” a Presentation from Siddha Ganju
“Deep Learning on Mobile Devices,” a Presentation from Siddha Ganju
 
Notes
NotesNotes
Notes
 
Simplifying IoT App Development - A Whitepaper by RapidValue
Simplifying IoT App Development - A Whitepaper by RapidValueSimplifying IoT App Development - A Whitepaper by RapidValue
Simplifying IoT App Development - A Whitepaper by RapidValue
 
SoftTeco - Software Development Company Profile
SoftTeco - Software Development Company ProfileSoftTeco - Software Development Company Profile
SoftTeco - Software Development Company Profile
 
Augmented and Virtual Reality applied in Industry 4.0
Augmented and Virtual Reality applied in Industry 4.0Augmented and Virtual Reality applied in Industry 4.0
Augmented and Virtual Reality applied in Industry 4.0
 
Business Case for Investment Outline PrototypesEnvironment Proc.docx
Business Case for Investment Outline PrototypesEnvironment Proc.docxBusiness Case for Investment Outline PrototypesEnvironment Proc.docx
Business Case for Investment Outline PrototypesEnvironment Proc.docx
 
Comprehensive IoT Development Services to Empower Your Business
Comprehensive IoT Development Services to Empower Your BusinessComprehensive IoT Development Services to Empower Your Business
Comprehensive IoT Development Services to Empower Your Business
 
Gigasource Company profile
Gigasource Company profileGigasource Company profile
Gigasource Company profile
 
Islam Salah Elshenawy Elshenawy - Software Testing Lead Specialist
Islam Salah Elshenawy Elshenawy - Software Testing Lead SpecialistIslam Salah Elshenawy Elshenawy - Software Testing Lead Specialist
Islam Salah Elshenawy Elshenawy - Software Testing Lead Specialist
 
Hiran Hari_CV
Hiran Hari_CVHiran Hari_CV
Hiran Hari_CV
 
offerings managed services NOC : network operations center
offerings managed services NOC : network operations centerofferings managed services NOC : network operations center
offerings managed services NOC : network operations center
 
codeBeamer Eclipse DemoCamp-23.11.2010
codeBeamer Eclipse DemoCamp-23.11.2010codeBeamer Eclipse DemoCamp-23.11.2010
codeBeamer Eclipse DemoCamp-23.11.2010
 
ZiniosEdge Company Overview
ZiniosEdge Company OverviewZiniosEdge Company Overview
ZiniosEdge Company Overview
 
The Internet Of Everything - How To Make It Smarter
The Internet Of Everything - How To Make It SmarterThe Internet Of Everything - How To Make It Smarter
The Internet Of Everything - How To Make It Smarter
 
Development of Android Based Mobile App for PrestaShop eCommerce Shopping Ca...
Development of Android Based Mobile App for PrestaShop eCommerce  Shopping Ca...Development of Android Based Mobile App for PrestaShop eCommerce  Shopping Ca...
Development of Android Based Mobile App for PrestaShop eCommerce Shopping Ca...
 

Kürzlich hochgeladen

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

Getting started with iBeacons and AEM

  • 1. APACHE SLING & FRIENDS TECH MEETUP BERLIN, 22-24 S EPTEMBER 2014 Getting Started with iBeacons and AEM Bartek Soin, Adobe Global Shared Services
  • 2. § What is this iBeacon thing? § How do I use it with AEM?
  • 3. What is this iBeacon thing? adaptTo() 2014 3
  • 4. § iBeacon is a tiny computer § Uses Bluetooth Smart (BLE) to broadcast its ID § No pairing required § Signal is picked up by different receivers § Smartphone, Tablet, Google Glass... © Estimote adaptTo() 2014 4
  • 5. § Application handles events § Even in the background and when the device is locked § Dedicated app allows you to configure your beacons © Estimote adaptTo() 2014 5
  • 6. © Estimote Source: Wikipedia adaptTo() 2014 6
  • 7. § iBeacon broadcasts its UUID + major + minor § RSSI used to calculate distance § 3 major zones: § Far § Near § Immediate © Estimote adaptTo() 2014 7
  • 9. Applications Promotions & automatic payment Retail stores, cafes... Automatic check-in Airports, hotels, hospitals... Location-based information Airports, stadiums, museums, city guides... Home automation Lights, locks, garage doors... adaptTo() 2014 9
  • 10. Pitfalls and shortcomings § Bluetooth and location services have to be enabled § Bluetooth waves are easily blocked § Low accuracy and not very stable § Rather unusable for positioning (trilateration) § Battery drain in older phones § Can be spoofed, applications need to handle security adaptTo() 2014 10
  • 11. How do I use it in AEM? adaptTo() 2014 11
  • 12. § Mostly with Mobile Apps in AEM 6.0 § Ideas based on our POC-s for customers in hotel and media industry adaptTo() 2014 12
  • 13. Authoring and simulation § Custom Client Context store § Segments based on beacon proximity § Components to use in targeted experiences adaptTo() 2014 13
  • 14. Runtime § Necessary PhoneGap plugins § Extension to Target component – support for targeted experiences in mobile apps § Adobe Mobile Services § AEM Targeting (in progress) adaptTo() 2014 14
  • 15. Client Context store § Similar to geolocation § Configurable beacons: east-entrance,-30,40,orange, 42041/42808 § Stores the distances in microlocation/distance-* properties adaptTo() 2014 15
  • 16. Client Context store § microlocation.jsp <div class="cq-cc-store"> <div class="cq-cc-content"> <c:forEach var="beacon" items="${properties.beacons}"> <!-- output beacon divs --> </c:forEach> <span class="user drag"></span> </div> <div class="cq-cc-clear"></div> </div> adaptTo() 2014 16
  • 17. Client Context store § script. js user.drag(function(ev, dd) { $('.microlocation .beacon').each(function(index, element) { store.setProperty('distance-' + beaconLabel, t.getDistance(user, beacon)); }); }); getDistance: function(user, beacon) { return Math.round(Math.sqrt(x * x + y * y)); } adaptTo() 2014 17
  • 18. Building segments § Use the Beacon Proximity component: § ... or a script: parseInt(ClientContext.get('microlocation/distance-east-entrance')) < 85 adaptTo() 2014 18
  • 19. Additional components – local notification PhoneGap Local Notification plugin wrapped in AEM component localNotifier.addNotification({ alertBody: 'Hello World!’ }); adaptTo() 2014 19
  • 21. Summary § iBeacons are all the hype now, don’t miss it § AEM package: § Still in development § Relies on the Estimote SDK § Let me know if you’d like to use it adaptTo() 2014 21