BLE beacons, Eddystone and Physical Web: an introduction. Alessio Cucini, Samuele Forconi BlueUp Srls

Size: px
Start display at page:

Download "BLE beacons, Eddystone and Physical Web: an introduction. Alessio Cucini, Samuele Forconi BlueUp Srls"

Transcription

1 BLE beacons, Eddystone and Physical Web: an introduction Alessio Cucini, Samuele Forconi BlueUp Srls

2 Contents The origin of (radio) beacons Bluetooth 4.0 and Bluetooth Low Energy Bluetooth LE protocol Android Bluetooth LE API Bluetooth LE beacons ibeacon Eddystone Google Beacon API Physical Web Web Bluetooth

3 What is a (radio) beacon? A radio beacon is a transmitter at a known location, which transmits a continuous or periodic radio signal with limited information content (for example its identification or location), on a specified radio frequency. Occasionally the beacon function is combined with some other transmission, like telemetry data or meteorological information. (source: Wikipedia)

4 Beacons and mobile Radio beacons are a well known and estabilished technology (especially in aviation, navigation). A few events renewed the interest: Bluetooth Low Energy (or Smart) included in Bluetooth 4.0 specifications Support of Bluetooth 4.0 in smartphones and mobile OS (ios, Android, Windows, Blackberry) Launch of ibeacon (Apple)

5 Bluetooth 4.0 Starting from Version 4.0 of Bluetooth Core Specification, a new extension has been included, called Bluetooth Low Energy (BLE), also known as Bluetooth Smart. Bluetooth Low Energy is a power- and applicationfriendly version of Bluetooth, especially built for the Internet of Things (IoT). Bluetooth Smart was originally introduced under the name Wibree by Nokia in 2006.

6 The Bluetooth 4.0 Ecosystem (Source: Bluetooth SIG)

7 Vs. Low consumption ( low energy ) Short connection and comunication time Low complexity Asymmetric architecture Simple, cheap, batterypowered peripheral Complex central Non-negligible energy consumption Long discovering and pairing time Medium complexity Limited visibility and discovery Stream-oriented Message-oriented

8 BLE Roles GAP (Generic Access Profile) controls connections and advertising in Bluetooth: determines how two devices can (or can't) interact with each other. GAP defines various roles for devices. Two key concepts are: Peripheral devices are small, low power, resource contrained devices that advertise to connect to a much more powerful central device. Central devices are usually (but not necessarily) a mobile phone or tablet with far more processing power and memory.

9 BLE Services and Characteristics GATT (Generic ATTribute profile) defines how two BLE devices transfer data back and forth using concepts called Services and Characteristics: Services are logic entities, and contain specific chunks of data called characteristics; Characteristics incapsulate a single data point Services and Char's are identified by 16-bit or 128-bit UUID's

10 Generic BLE connection GATT Server GATT Client GAP = Generic Access Profile GATT = Generic ATTribute Profile

11 Android Bluetooth LE API GATT Client (App) GATT Server Class: BluetoothLeScanner Method: startscan (List<ScanFilter> filters, ScanSettings settings, ScanCallback callback) A ScanFilter allows clients to restrict scan results to only those that are of interest to them: Service UUIDs which identify the GATT services running on the device Name of remote Bluetooth LE device MAC address of the remote device. Service data which is the data associated with a service. Manufacturer specific data which is the data associated with a particular manufacturer.

12 Android Bluetooth LE API GATT Client (App) GATT Server Class: BluetoothDevice Method: connectgatt (Context context, boolean autoconnect, BluetoothGattCallback callback) Connect to GATT Server hosted by this device. The callback is used to deliver results to Caller, such as connection status as well as any further GATT client operations.

13 Android Bluetooth LE API GATT Client (App) GATT Server Class: BluetoothGatt Method: discoverservices() Discovers services offered by a remote device as well as their characteristics and descriptors.

14 BLE Beacon Smartphone Beacon BLE-beacon technology uses only a portion of the Bluetooth LE protocol: Broadcast advertising

15 BLE Beacons Timeline Apple launches ibeacon technology iphone 4S First smartphone with Bluetooth 4.0 support Physical Web support on Google Chrome ver. 49 for Android Google launches Eddystone specifications Android 4.3 supports Bluetooth 4.0

16 ibeacon technology ibeacon technology (May 2013) defines advertising packet format. ibeacon advertising packet includes an unique numeric identifier of the beacon, coded by three numbers (proximity-uuid, major number, minor number) Specifications requires also: Advertising interval equal to 100msec Non-connectable advertising packet

17 ibeacon Advertising Packet 1 2 FL FT fl 4 5 FL FT Mnf. data Proximity UUID M 04 1A FF 4C Fixed FL = Field Length FT = Field Type fl = LE and BR/EDR flag Mnf. data = manufacturer data (fixed) Proximity UUID = unique identifier of proximity region (16 bytes) M = major number (2 bytes) m = minor number (2 bytes) R = RSSI (Received Signal Strength Indicator) at 1mt [used to estimate proximity (immediate, near, far, unknown) and accuracy] m R

18 Proximity Immediate (< 0.2 m) Near (< 2/3 m) Far (< 30/35 m) Unknown

19 Accuracy Definition (Apple CoreLocation Framework): Indicates the one sigma horizontal accuracy in meters. Use this property to differentiate between beacons with the same proximity value. Do not use it to identify a precise location for the beacon. Accuracy values may fluctuate due to RF interference. A negative value in this property signifies that the actual accuracy could not be determined. Accuracy is associated to a probability to be within a certain distance from the beacon. It is NOT a distance.

20 Ranging with RSSI Reflections, diffractions, absorptions, ect., impact on radio signal propagation Distance (m) Two-ray model n = 1.7 (in-building LOS) RSSI (dbm) n = 2 (free space) n = 5 (in-building NLOS) Log-distance path-loss model RSSI = RSSI0-10 n log10(d/d0) + Xg normal random variable with zero mean and standard deviation in db

21 Eddystone specifications First-release Eddystone specifications (July 2015) defines 3 advertising packet formats: Eddystone-UID: similar to ibeacon (opaque unique identifier), but with a different ID structure Eddystone-URL: transmit an URL (Uniform Resource Locator) in compact form Eddystone-TLM: telemetry data (internal status) of the beacon (battery voltage, temperature, counters) This three packet formats share the first 11 bytes of the advertising packet

22 Eddystone Advertising Packet FE 12 max (31) depends on frame type FL FT fl FL CL E-UUID FL SD AA FE 0xnn 0x16 FL = Field Length FT = Field Type fl = LE and BR/EDR flag CL = Complete list of service UUID SD = Service Data E-UUID = Eddystone UUID (0xFEAA) E-UUID AA FE

23 Eddystone-UID FT RD Namespace ID Instance ID FL = 0x17 (23) FT = Frame Type RD = Ranging Data (RSSI at 0mt; = RSSI at 1mt + 41dB) Namespace ID, identifies a set of beacons (10 bytes) Instance ID, identifies a certain beacon within NID (6 bytes) RFU = Reserved for Future Use 31 RFU

24 Eddystone-URL FT RD US Encoded URL 01 FL = variable, depends on URL length FT = Frame Type RD = Ranging Data (RSSI at 0mt) US = URL Scheme prefix (0x00 = 0x01 = 0x02 = 0x03 = Encoded URL = up to 17 bytes (usually compact URL)

25 Eddystone-TLM FT Ver. VBATT TEMP ADV_CNT SEC_CNT FL = 0x11 (17) FT = Frame Type Ver. = TLM-frame version (currently 0x00) VBATT = battery voltage (mv) 2 bytes TEMP = beacon temperature ( C) 2 bytes ADV_CNT = advertising packet counter from power-up (units) 4 bytes SEC_CNT = time counter from power-up (0.1sec) 4 bytes

26 UID vs URL UID ID ID URL

27 Google Beacon API (Source: Google Inc.)

28 Proximity Beacon API / 1 The Proximity Beacon API is a cloud service that allows you to manage data associated with your BLE beacon fleet using a REST interface. You can associate data with registered beacons as attachments. Attachments are arbitrary blobs of data that are served back as messages to your Android and ios apps through the Nearby Messages API. You can update attachments remotely, eliminating the need to physically visit each beacon.

29 Proximity Beacon API / 2 You can monitor the health of your beacons (battery level, internal temperature,...) through the Proximity Beacon API's diagnostic endpoint (based on Eddystone-TLM) Also, when registering beacons with the Proximity Beacon API, the following fields are used as a signal by the Places API: Latitude and longitude coordinates. Indoor floor level. Place ID.

30 Physical Web The Physical Web is a project whose aim is to connect everyday physical objects to the web. This involves creating an open ecosystem where smart devices can broadcast URLs into the area around them. Any nearby display such as a smartphone or a tablet can then see these URLs and offer them up to the user. It mirrors the basic behavior we have today with a search engine. The backbone of Physical Web is Eddystone-URL format

31 Physical Web The user requests a list of what's nearby. A ranked list of URLs is shown. The user picks one. The URL is opened in a full screen browser window.

32 Physical Web With Physical Web you do not need an app to receive nearby objects URL's. A browser with embedded BLE beacon-scanning support is sufficient. Starting from Rel. 49.x, Google Chrome supports Physical Web (still some bugs to be fixed!) HTTPS is required Note: Opera browser supports Physical Web, too.

33 Web Bluetooth Web Bluetooth is a specification for Bluetooth API to allow websites to communicate with BLE devices, using the Generic Attribute Profile (GATT), in a secure and privacy-preserving way. A website, running in the Central role, can connect to remote GATT Servers over a BLE connection. You can interact with a BLE-enabled device from a website with a browser (no app required) (Source:

34 Live Demo Very simple demo: toggling a led on a BLE-enabled device, using Web Bluetooth API. We use: a browser a HTTPS site a BLE connection NO Internet connection is required on the BLE-enabled device side

35 Resources Android API for Blueooth Low Energy tooth-le.html Open-source Android library for ibeacon Eddystone Beacons Google Developer site Open-source Eddystone library The Physical Web project library Web Bluetooth ct-with-ble-devices-on-the-web

36 Contacts Alessio Cucini BlueUp Srls, Managing Director Samuele Forconi BlueUp Srls, SW Development Manager

PM0237 Programming manual

PM0237 Programming manual Programming manual BlueNRG, BlueNRG-MS stacks programming guidelines Introduction Note: The main purpose of this document is to provide a developer with some reference programming guidelines about how

More information

Introducing BEEKS Proximity Solutions. Developer Kit Gets You Started

Introducing BEEKS Proximity Solutions. Developer Kit Gets You Started Introducing BEEKS Proximity Solutions BEEKS from BluVision provides industry-leading Bluetooth beacon solutions to enterprises and innovative developers. Leveraging a cutting-edge, cloudbased solution,

More information

DeIC Konference 2015. Ib Hansen: ibhansen@cisco.com. Oktober 2015

DeIC Konference 2015. Ib Hansen: ibhansen@cisco.com. Oktober 2015 DeIC Konference 2015 Ib Hansen: ibhansen@cisco.com Oktober 2015 Agenda App Development How to wake and App, based on location What to display in the App, based on location Location Deployment for Apps

More information

Getting Started with ibeacon

Getting Started with ibeacon apple Getting Started with ibeacon Version 1.0 Getting Started with ibeacon Overview Introduced in ios 7, ibeacon is an exciting technology enabling new location awareness possibilities for apps. Leveraging

More information

Automated Real Time In-Store Retail Marketing Using Beacon

Automated Real Time In-Store Retail Marketing Using Beacon International Journal of Computer Sciences and Engineering Open Access Technical Paper Volume-04, Issue-02 E-ISSN: 2347-2693 Automated Real Time In-Store Retail Marketing Using Beacon Jigar Kothari 1*,

More information

IS187x_BM7x - BLEDK3 v1.01 Release Note

IS187x_BM7x - BLEDK3 v1.01 Release Note IS187x_BM7x - BLEDK3 v1.01 Release Note page 1 Table of Contents Scope:... 4 ersion: v1.0.0... 4 Bugs fixed... 4 Enhancements & New Features... 4 Known Bugs & Limitations... 4 1 Applications... 5 1.1 BLE

More information

Bluetooth SMART Advertise-Only Beacon Reference Design

Bluetooth SMART Advertise-Only Beacon Reference Design EM MICROELECTRONIC - MARIN SA PRELIMINARY Bluetooth SMART Advertise-Only Beacon Reference Design Features COMPLETE BLE BEACON SYSTEM o EM9301 Bluetooth SMART Controller o EM6819 0.9V Flash Microcontroller

More information

BLUETOOTH SMART CABLE REPLACEMENT

BLUETOOTH SMART CABLE REPLACEMENT BLUETOOTH SMART CABLE REPLACEMENT APPLICATION NOTE Monday, 15 October 2012 Version 1.5 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes no responsibility for

More information

Mail id: nawalebalasaheb1234@gmail.com

Mail id: nawalebalasaheb1234@gmail.com www.ijecs.in International Journal Of Engineering And Computer Science ISSN: 2319-7242 Volume 5 Issue 5 May 2016, Page No. 16359-16364 Beacon for Proximity Target Marketing Navalkrushna Allurwar,Balasaheb

More information

GIMBAL PLATFORM DIGITAL INSIGHTS INTO THE PHYSICAL WORLD

GIMBAL PLATFORM DIGITAL INSIGHTS INTO THE PHYSICAL WORLD Qualcomm Retail Solutions Inc. GIMBAL PLATFORM DIGITAL INSIGHTS INTO THE PHYSICAL WORLD The Advantages of Gimbal for Retailers, Brands and Application Developers Revision 1 November 2013 1 Table of Contents

More information

ECM (ELO-KIT-ECMG2-AND)

ECM (ELO-KIT-ECMG2-AND) Software SDK USER GUIDE Elo Touch Solutions I-Series Interactive Signage ESY10i1, ESY15i1, ESY22i1 Android ECM (ELO-KIT-ECMG2-AND) SW602422 Rev A I-Series and Android ECM Software Development Kit User

More information

Introducing the Adafruit Bluefruit LE Sniffer

Introducing the Adafruit Bluefruit LE Sniffer Introducing the Adafruit Bluefruit LE Sniffer Created by Kevin Townsend Last updated on 2015-06-25 08:40:07 AM EDT Guide Contents Guide Contents Introduction FTDI Driver Requirements Using the Sniffer

More information

Beacons: The Technical Overview

Beacons: The Technical Overview a division of Beacons: The This paper seeks to provide education and technical insight to beacons, in addition to providing insight to Apple s Copyright Mubaloo Ltd 2014 Contents Objective 3 Audience 3

More information

Writing Bluetooth Mobile Apps

Writing Bluetooth Mobile Apps Writing Bluetooth Mobile Apps Vincent Gao, Bluetooth SIG, Inc. Bluetooth SIG Proprietary 1 Agenda Bluetooth Smart Ready application development overview Platform support ios Android Windows Phone Cross

More information

Supporting ZDOs with the XBee API

Supporting ZDOs with the XBee API Supporting ZDOs with the XBee API The ZigBee Device Profile is a management and discovery service layer supported on all ZigBee devices. Like all other profiles, the ZigBee Device Profile defines a set

More information

Bluetooth 4.0 Solutions for Apple ios Devices. Bluegiga Technologies

Bluetooth 4.0 Solutions for Apple ios Devices. Bluegiga Technologies Bluetooth 4.0 Solutions for Apple ios Devices Bluegiga Technologies Agenda Introduction How to build Bluetooth 4.0 applications Compatible Bluegiga products What is Bluetooth low energy? Summary Introduction

More information

Analysis of Methods for Mobile Device Tracking. David Nix Chief Scientific Advisor

Analysis of Methods for Mobile Device Tracking. David Nix Chief Scientific Advisor Analysis of Methods for Mobile Device Tracking David Nix Chief Scientific Advisor October 2013 Table of Contents 1. Document Purpose and Scope 3 2. Overview 3 2.1 Mobile Device Penetration 3 2.2 Mobile

More information

DOCUMENT REFERENCE: SQ312-002-EN. SAMKNOWS SMARTPHONE-BASED TESTING SamKnows App for Android White Paper. March 2014

DOCUMENT REFERENCE: SQ312-002-EN. SAMKNOWS SMARTPHONE-BASED TESTING SamKnows App for Android White Paper. March 2014 DOCUMENT REFERENCE: SQ312-002-EN SAMKNOWS SMARTPHONE-BASED TESTING SamKnows App for Android White Paper March 2014 SAMKNOWS QUALITY CONTROLLED DOCUMENT. SQ REV LANG STATUS OWNER DATED 312 002 EN FINAL

More information

Mobile App Testing Guide. Basics of Mobile App Testing

Mobile App Testing Guide. Basics of Mobile App Testing 2015 Mobile App Testing Guide Basics of Mobile App Testing Introduction Technology is on peek, where each and every day we set a new benchmark. Those days are gone when computers were just a machine and

More information

Bluetooth Low Energy Client Module Out of Box Setup Guide Version 1.0.0

Bluetooth Low Energy Client Module Out of Box Setup Guide Version 1.0.0 Out of Box Setup Guide Version 1.0.0 Martin Bowman Applications Engineer Released 2015-12-14 Contents 1 IoT BLECM Development Kit 2 1.1 Out of the box setup......................................... 2 2

More information

Internet of Things. theory and practice. Maarten de Groot. EMEA PUG Challenge, Copenhagen 2015

Internet of Things. theory and practice. Maarten de Groot. EMEA PUG Challenge, Copenhagen 2015 Internet of Things theory and practice Maarten de Groot EMEA PUG Challenge, Copenhagen 2015 ITKracht goals Extern Be successful together Knowledge sharing Long term partnership Intern Fun is part of culture

More information

Iknaia Asset and Personnel Tracking Management System for the Construction Industry

Iknaia Asset and Personnel Tracking Management System for the Construction Industry Iknaia Asset and Personnel Tracking Management System for the Construction Industry Introduction The UK construction industry accounts for over 7%* of the UK s Gross Domestic Product and employs over two

More information

HP Location Aware. Datacon, HP Retail Solutions Christian F. Dupont / October 14, 2014

HP Location Aware. Datacon, HP Retail Solutions Christian F. Dupont / October 14, 2014 HP Location Aware Datacon, HP Retail Solutions Christian F. Dupont / October 14, 2014 Mobility trends in retail Mobility enhances user experience and loyalty and enables customer engagement Trends In-Store

More information

Mobile Payment Transactions: BLE and/or NFC? White paper by Swen van Klaarbergen, consultant for UL Transaction Security s Mobile Competence Center

Mobile Payment Transactions: BLE and/or NFC? White paper by Swen van Klaarbergen, consultant for UL Transaction Security s Mobile Competence Center Mobile Payment Transactions: BLE and/or NFC? White paper by Swen van Klaarbergen, consultant for UL Transaction Security s Mobile Competence Center Mobile Payment Transactions: BLE and/or NFC? About the

More information

Iknaia Asset and Personnel Tracking Management System for the Healthcare Industry

Iknaia Asset and Personnel Tracking Management System for the Healthcare Industry Iknaia Asset and Personnel Tracking Management System for the Healthcare Industry July 2014 Introduction Trying to find your way around a large hospital or locating a high-value medical device such as

More information

DOCUMENT REFERENCE: SQ312-003-EN. SAMKNOWS SMARTPHONE-BASED TESTING SamKnows App for Android White Paper. May 2015

DOCUMENT REFERENCE: SQ312-003-EN. SAMKNOWS SMARTPHONE-BASED TESTING SamKnows App for Android White Paper. May 2015 DOCUMENT REFERENCE: SQ312-003-EN SAMKNOWS SMARTPHONE-BASED TESTING SamKnows App for Android White Paper May 2015 SAMKNOWS QUALITY CONTROLLED DOCUMENT. SQ REV LANG STATUS OWNER DATED 312 003 EN FINAL JP

More information

Application of Android Mobile Platform in Remote Medical Monitoring System

Application of Android Mobile Platform in Remote Medical Monitoring System , pp. 163-174 http://dx.doi.org/10.14257/ijsh.2015.9.4.17 Application of Android Mobile Platform in Remote Medical Monitoring System Yao Wang, Minghan Liu and Jingang Li School of Software, Harbin University

More information

AppPulse Mobile. Whitepaper: Overhead, Privacy, and Security. March 2016

AppPulse Mobile. Whitepaper: Overhead, Privacy, and Security. March 2016 AppPulse Mobile Whitepaper: Overhead, Privacy, and Security March 2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the express warranty

More information

Wireless Day / Night Cloud Camera TV-IP751WIC (v1.0r)

Wireless Day / Night Cloud Camera TV-IP751WIC (v1.0r) (v1.0r) TRENDnet s Wireless Day / Night Cloud Camera, model, takes the work out of viewing video over the internet. Previously to view video remotely, users needed to perform many complicated and time

More information

Pebble. E-Paper Watch for iphone and Android. 1 Button A. 4 Button B. 5 Button C. 2 Display. 6 Button D. 3 Charge Port

Pebble. E-Paper Watch for iphone and Android. 1 Button A. 4 Button B. 5 Button C. 2 Display. 6 Button D. 3 Charge Port 2 4 4 5 3 6 Button A 2 Display 4 Button B 5 Button C 3 Charge Port 6 Button D Page of 4 Certifications and Safety Approvals FCC Compliance Statement This device complies with Part 5 of the FCC Rules. Operation

More information

Wednesday, January 15, 14. Secure and Private Service Discovery over Low Energy Bluetooth

Wednesday, January 15, 14. Secure and Private Service Discovery over Low Energy Bluetooth Secure and Private Service Discovery over Low Energy Bluetooth Square Register Hardware credit card reader Developed for businesses Android and ios app Square Wallet Android and ios app Works with Square

More information

Getting Started with VMware Horizon View (Remote Desktop Access)

Getting Started with VMware Horizon View (Remote Desktop Access) Getting Started with VMware Horizon View (Remote Desktop Access) Use The Links Below To Navigate This Document Using VMware Horizon View with Tablet and Smartphone APP or Mobile Web Browser Walk Through

More information

BlueBeacon Bluetooth Low Energy proximity beacon

BlueBeacon Bluetooth Low Energy proximity beacon BlueBeacon Bluetooth Low Energy proximity beacon OTA firmware upgrade Over the air (OTA) firmware upgrade can be performed on BlueBeacon beacons (all models excluding USB) using most recent ios devices.

More information

INDOOR POSITIONING & NAVIGATION

INDOOR POSITIONING & NAVIGATION infsoft GmbH INDOOR POSITIONING & NAVIGATION A Guide on Technologies and Use Cases 20.01.2016 TABLE OF CONTENTS 1. Industries... 3 1.1. Location based services and indoor navigation in railway stations...

More information

Unmatched RF Spectrum Analysis

Unmatched RF Spectrum Analysis Datasheet: AirMagnet Spectrum XT AirMagnet Spectrum XT is the industry s first professional spectrum analyzer solution that combines in-depth RF analysis with real-time WLAN information for quicker and

More information

Process Control and Automation using Modbus Protocol

Process Control and Automation using Modbus Protocol Process Control and Automation using Modbus Protocol Modbus is the fundamental network protocol used in most industrial applications today. It is universal, open and an easy to use protocol. Modbus has

More information

999GPS.net Tracking Platform Operation Guide

999GPS.net Tracking Platform Operation Guide 999GPS.net Tracking Platform Operation Guide Welcome to use this Real Time GPS tracking platform, This software is web based system, it is not necessary to download any software or any plug-in software,

More information

Key Priorities for Sub-GHz Wireless Deployment

Key Priorities for Sub-GHz Wireless Deployment Key Priorities for Sub-GHz Wireless Deployment Silicon Laboratories Inc., Austin, TX Introduction To build an advanced wireless system, most developers will end up choosing between two industrial, scientific

More information

G-CLOUD FRAMEWORK RM1557-vi 5DRIVE PERSONAL CLOUD BACKUP

G-CLOUD FRAMEWORK RM1557-vi 5DRIVE PERSONAL CLOUD BACKUP Commercial in Confidence 1 G-CLOUD FRAMEWORK RM1557-vi SERVICE DEFINITION 5DRIVE PERSONAL CLOUD BACKUP 5NINES 5NINES Data Centres Services Service Offered 5DRIVE - CLOUD BACKUP SERVICE with remote access

More information

UNDERSTANDING BEACONS

UNDERSTANDING BEACONS UNDERSTANDING BEACONS A GUIDE TO BEACON TECHNOLOGIES By Greg Sterling, Jules Polonetsky & Stephany Fan Introduction UNDERSTANDING BEACONS LOCAL SEARCH ASSOCIATION & FUTURE OF PRIVACY FORUM 1 December 2014

More information

Bluetooth Solutions for Apple ios Devices 2/14/2013 1

Bluetooth Solutions for Apple ios Devices 2/14/2013 1 Bluetooth Solutions for Apple ios Devices 2/14/2013 1 Topics Introduction Bluegiga s Solution for ios Devices Compatible Products Summary 2/14/2013 2 Introduction Bluetooth BR/EDR compatible ios devices

More information

Mobile Phone & Website Tracking Platform Operation Guide

Mobile Phone & Website Tracking Platform Operation Guide Mobile Phone & Website Tracking Platform Operation Guide This software is web based system, for users to logon with given user name & password to locate the tracker s current location, play back the history

More information

Measurement and Analysis Introduction of ISO7816 (Smart Card)

Measurement and Analysis Introduction of ISO7816 (Smart Card) Measurement and Analysis Introduction of ISO7816 (Smart Card) ISO 7816 is an international standard related to electronic identification cards with contacts, especially smart cards, managed jointly by

More information

BLUETOOTH SERIAL PORT PROFILE. iwrap APPLICATION NOTE

BLUETOOTH SERIAL PORT PROFILE. iwrap APPLICATION NOTE BLUETOOTH SERIAL PORT PROFILE iwrap APPLICATION NOTE Thursday, 19 April 2012 Version 1.2 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes no responsibility for

More information

SuperGuard VT-05 Vehicle Tracking Device

SuperGuard VT-05 Vehicle Tracking Device SuperGuard VT-05 Vehicle Tracking Device The SuperGuard VT-05 Vehicle Tracker is a professional GPS tracking device designed for fleet management and commercial data centers, with customizable data upload

More information

UG103.14: Application Development Fundamentals: Bluetooth Smart Technology

UG103.14: Application Development Fundamentals: Bluetooth Smart Technology UG103.14: Application Development Fundamentals: Bluetooth Smart Technology This volume of Silicon Labs Application Development Fundamentals series provides an overview of Bluetooth Smart, also known as

More information

A Beginners Guide To Responsive, Mobile & Native Websites 2013 Enhance.ie.All Rights Reserved.

A Beginners Guide To Responsive, Mobile & Native Websites 2013 Enhance.ie.All Rights Reserved. A Beginners Guide To Responsive, Mobile & Native Websites 2013 Enhance.ie.All Rights Reserved. 1 The Mobile Web refers to access to the world wide web, i.e. the use of browser-based Internet services,

More information

Dell Wyse Cloud Connect

Dell Wyse Cloud Connect Dell Wyse Cloud Connect Secure productivity from work, home, and on the go. The ultra-compact personal cloud device that can make any HDMI/MHL-equipped display your own. For personal access to all of your

More information

Mobile Engagement and Analytics

Mobile Engagement and Analytics Mobile Engagement and Analytics Mobile Engagement Trends 80% of the world owns a mobile phone. And we re using them in the venues we visit. Mobile Engagement Trends 52% of companies worldwide intend to

More information

Reducing Configuration Complexity with Next Gen IoT Networks

Reducing Configuration Complexity with Next Gen IoT Networks Reducing Configuration Complexity with Next Gen IoT Networks Orama Inc. November, 2015 1 Network Lighting Controls Low Penetration - Why? Commissioning is very time-consuming & expensive Network configuration

More information

BT LE RFID Reader v1.0

BT LE RFID Reader v1.0 BT LE RFID Reader v1.0 The board The BT LE RFID Reader board v1.0 is shown below. On the board there are the following components: Power connector J7 with positive voltage going to pin 1 (red wire) and

More information

Proximity Marketing Privacy Considerations

Proximity Marketing Privacy Considerations Proximity Marketing Privacy Considerations Proximity Marketing Commercial in confidence HOP Commercial Ubiquitous in confidence S.L. 2015 www.hopu.eu HOP Ubiquitous Page S.L. 1 2015 Dr. Antonio J. Jara

More information

Zigbee-Based Wireless Distance Measuring Sensor System

Zigbee-Based Wireless Distance Measuring Sensor System Zigbee-Based Wireless Distance Measuring Sensor System Ondrej Sajdl 1, Jaromir Zak 1, Radimir Vrba 1 1 Department of Microelectronics, Brno University of Technology, FEEC, Udolni 53, 602 00 Brno, Czech

More information

Lab Exercise 802.11. Objective. Requirements. Step 1: Fetch a Trace

Lab Exercise 802.11. Objective. Requirements. Step 1: Fetch a Trace Lab Exercise 802.11 Objective To explore the physical layer, link layer, and management functions of 802.11. It is widely used to wireless connect mobile devices to the Internet, and covered in 4.4 of

More information

Help us make this document better smarttech.com/docfeedback/170892. Security information

Help us make this document better smarttech.com/docfeedback/170892. Security information Help us make this document better smarttech.com/docfeedback/170892 Security information SMART kapp includes data security features designed to keep your content controlled in a predictable way. This document

More information

One platform for all your print, scan and device management

One platform for all your print, scan and device management One platform for all your print, scan and device management Manage all Printing & Scanning with one single Platform. Incorporating uniflow into your document processes will lead to real improvements in

More information

CONTROL MICROSYSTEMS DNP3. User and Reference Manual

CONTROL MICROSYSTEMS DNP3. User and Reference Manual DNP3 User and Reference Manual CONTROL MICROSYSTEMS SCADA products... for the distance 48 Steacie Drive Telephone: 613-591-1943 Kanata, Ontario Facsimile: 613-591-1022 K2K 2A9 Technical Support: 888-226-6876

More information

Compatibility Testing for Mobile Apps and Websites

Compatibility Testing for Mobile Apps and Websites Compatibility Testing for Mobile Apps and Websites by Michael Yudanin a topic from Mobile Testing course Next full course: This is a sample of class Mobile Testing: Manual and Automated QUEST 2016, Chicago,

More information

Optimizing Wireless Networks.

Optimizing Wireless Networks. from the makers of inssider Optimizing Wireless Networks. Over the past few years, MetaGeek has created tools to help users optimize their wireless networks. MetaGeek s tools help visualize the physical

More information

iva Cable & Antenna Analyzer

iva Cable & Antenna Analyzer iva Cable & Antenna Analyzer VSWR, Return Loss Measurement & Distance to Fault The iva Series Cable & Antenna Analyzer is an exciting new product from Kaelus that enables users to accurately measure VSWR/return

More information

Important Bluetooth. and Software Considerations for Wireless Barcode Scanner Deployments

Important Bluetooth. and Software Considerations for Wireless Barcode Scanner Deployments Important Bluetooth and Software Considerations for Wireless Barcode Scanner Deployments By LEN OTT, Chief Technical Officer, Socket Mobile, Inc. February 2011 Before deploying a Bluetooth barcode scanner,

More information

1. Introduction... 1. 2. Activation of Mobile Device Management... 3. 3. How Endpoint Protector MDM Works... 5

1. Introduction... 1. 2. Activation of Mobile Device Management... 3. 3. How Endpoint Protector MDM Works... 5 User Manual I Endpoint Protector Mobile Device Management User Manual Table of Contents 1. Introduction... 1 1.1. What is Endpoint Protector?... 2 2. Activation of Mobile Device Management... 3 2.1. Activation

More information

App RfTrack Ver. 0.57

App RfTrack Ver. 0.57 App RfTrack Ver. 0.57 Low-cost monitoring System for White Spaces frequencies Creative Commons Attribution-NonCommercial-NoDerivatives Intl. Lic. See http://creativecommons.org/licenses/by-nc-nd/4.0/ Marco

More information

Ricoh HotSpot. Printing App. User s Guide. HotSpot Printing App supports:

Ricoh HotSpot. Printing App. User s Guide. HotSpot Printing App supports: Ricoh HotSpot Printing App Mobile Printing Solution HotSpot Printing App supports: HSPA_UQR_April192013_V1 - Apple ios devices - Android devices - BlackBerry smartphone - BlackBerry PlayBook Printing App

More information

Dell OpenManage Mobile Version 1.4 User s Guide (Android)

Dell OpenManage Mobile Version 1.4 User s Guide (Android) Dell OpenManage Mobile Version 1.4 User s Guide (Android) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION

More information

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide AdRadionet to IBM Bluemix Connectivity Quickstart User Guide Platform: EV-ADRN-WSN-1Z Evaluation Kit, AdRadionet-to-IBM-Bluemix-Connectivity January 20, 2015 Table of Contents Introduction... 3 Things

More information

Deploying Management and Security Agents to Mobile Devices

Deploying Management and Security Agents to Mobile Devices Deploying Management and Security Agents to Mobile Devices John Engels Adam Licata Scott Jareo Principal Product Manager Sales Engineer Field Enable. Symantec ITS Partners Symantec EM B23 Deploying Mgmt

More information

Mobile Accessibility. Jan Richards Project Manager Inclusive Design Research Centre OCAD University

Mobile Accessibility. Jan Richards Project Manager Inclusive Design Research Centre OCAD University Mobile Accessibility Jan Richards Project Manager Inclusive Design Research Centre OCAD University Overview I work at the Inclusive Design Research Centre (IDRC). Located at OCAD University in downtown

More information

Bluetooth for device discovery. Networking Guide

Bluetooth for device discovery. Networking Guide Bluetooth for device discovery Networking Guide Index Document Version: v4.4-11/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 1.1. General description...3 2. Hardware... 5 2.1.

More information

2.0 System Description

2.0 System Description 2.0 System Description The wireless alarm system consists of two or more alarm units within a specified range of one another. Each alarm unit employs a radio transceiver, allowing it to communicate with

More information

Design Considerations for RF Energy Harvesting Devices

Design Considerations for RF Energy Harvesting Devices Design Considerations for RF Energy Harvesting Devices Harry Ostaffe Director, Marketing & Business Development 1 Overview RF energy is generally very low Direct-power at close range to a transmitter Energy

More information

Kaseya 2. User Guide. Version 1.0

Kaseya 2. User Guide. Version 1.0 Kaseya 2 Mobile Device Management User Guide Version 1.0 March 12, 2012 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.

More information

THE DESIGN OF WORKER S BEHAVIOR ANALYSIS METHOD IN WORKPLACE USING INDOOR POSITIONING TECHNOLOGY

THE DESIGN OF WORKER S BEHAVIOR ANALYSIS METHOD IN WORKPLACE USING INDOOR POSITIONING TECHNOLOGY THE DESIGN OF WORKER S BEHAVIOR ANALYSIS METHOD IN WORKPLACE USING INDOOR POSITIONING TECHNOLOGY K. Tabata a, *, H. Konno b, M. Nakajima c a KOKUSAI KOGYO CO., LTD., 2 Rokubancho, Chiyoda-ku, Tokyo, Japan

More information

AppScope: Application Energy Metering Framework for Android Smartphones using Kernel Activity Monitoring

AppScope: Application Energy Metering Framework for Android Smartphones using Kernel Activity Monitoring AppScope: Application Energy Metering Framework for Android Smartphones using Kernel Activity Monitoring Chanmin Yoon*, Dongwon Kim, Wonwoo Jung, Chulkoo Kang, Hojung Cha Dept. of Computer Science Yonsei

More information

THE PROXBOOK REPORT THE STATE OF THE PROXIMITY INDUSTRY Q2 2015. All information in this report belongs tounacast AS

THE PROXBOOK REPORT THE STATE OF THE PROXIMITY INDUSTRY Q2 2015. All information in this report belongs tounacast AS THE PROXBOOK REPORT THE STATE OF THE PROXIMITY INDUSTRY Q2 2015. All information in this report belongs tounacast AS TABLE OF CONTENTS Page 3 Page 4 Page 5 Page 6 Page 7 Page 8 Page 9 Page 10 Page 11 Page

More information

Quick Start Guide v1.0. This Quick Start Guide is relevant to Laird s BT800, BT810 and BT820 Bluetooth modules.

Quick Start Guide v1.0. This Quick Start Guide is relevant to Laird s BT800, BT810 and BT820 Bluetooth modules. v1.0 This is relevant to Laird s BT800, BT810 and BT820 Bluetooth modules. INTRODUCTION The Linux operating system, and Android by extension, has excellent USB support for a variety of devices. This makes

More information

Results of IMES (Indoor Messaging System) Implementation for Seamless Indoor Navigation and Social Infrastructure Platform

Results of IMES (Indoor Messaging System) Implementation for Seamless Indoor Navigation and Social Infrastructure Platform Results of IMES (Indoor Messaging System) Implementation for Seamless Indoor Navigation and Social Infrastructure Platform Dinesh Manandhar, Seiya Kawaguchi, Hideyuki Torimoto GNSS Technologies Inc., Japan

More information

Mobila applikationer och trådlösa nät

Mobila applikationer och trådlösa nät Mobila applikationer och trådlösa nät HI1033 Lecturer: Anders Lindström, anders.lindstrom@sth.kth.se Lecture 10 Today s topics Bluetooth NFC Bluetooth Bluetooth Wireless technology standard for exchanging

More information

The Internet of Things: Opportunities & Challenges

The Internet of Things: Opportunities & Challenges The Internet of Things: Opportunities & Challenges What is the IoT? Things, people and cloud services getting connected via the Internet to enable new use cases and business models Cloud Services How is

More information

Minimum Requirements for Web Based Applications

Minimum Requirements for Web Based Applications Recommended Browsers Skyward recognizes the diverse Operating Systems, Devices, and Internet browsers our customers are using. While we want every customer to have the best possible experience, we recognize

More information

Kaseya 2. User Guide. Version 7.0. English

Kaseya 2. User Guide. Version 7.0. English Kaseya 2 Mobile Device Management User Guide Version 7.0 English September 3, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

WNMS Mobile Application

WNMS Mobile Application WNMS Mobile Application User s Guide Revision 1.0 18 October 2013 Copyright 2013 Deliberant www.deliberant.com Copyright 2013 Deliberant This user s guide and the software described in it are copyrighted

More information

ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM

ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM Liu Yanxiang & Yow Kin Choong School of Computer Engineering Nanyang Technological University Nanyang Avenue, Singapore 639798 Keywords:

More information

Texas Instruments CC2540/41 Bluetooth Low Energy Sample Applications Guide v1.3.1

Texas Instruments CC2540/41 Bluetooth Low Energy Sample Applications Guide v1.3.1 Texas Instruments CC2540/41 Bluetooth Low Energy Sample Applications Guide v1.3.1 Document Number: SWRU297 Copyright 2011-2013 Texas Instruments, Inc. Table Of Contents TABLE OF CONTENTS... 2 REFERENCES...

More information

Questions from The New SensorTag - IoT Made Easy Webinar

Questions from The New SensorTag - IoT Made Easy Webinar Questions from The New SensorTag - IoT Made Easy Webinar Are there any plans to make a Windows API available (preferably portable for use in Windows 10 Universal applications) It is in our queue of projects,

More information

E21 Mobile Users Guide

E21 Mobile Users Guide E21 Mobile Users Guide E21 Mobile is the Mobile CRM companion to TGI s Enterprise 21 ERP software. Designed with the mobile sales force in mind, E21 Mobile provides real-time access to numerous functions

More information

User s Manual of BTGP-38KM Bluetooth GPS Data Logger V1.0

User s Manual of BTGP-38KM Bluetooth GPS Data Logger V1.0 User s Manual of BTGP-38KM Bluetooth GPS Data Logger V1.0 I Instruction to Product 1. Summary BTGP-38KM, a high-tech product combines the advanced Bluetooth technology and GPS technology. Through, Bluetooth

More information

HANDS-FREE BLUETOOTH CONTROLLER for SMART READY TABLETS AND COMPUTERS

HANDS-FREE BLUETOOTH CONTROLLER for SMART READY TABLETS AND COMPUTERS HANDS-FREE BLUETOOTH CONTROLLER for SMART READY TABLETS AND COMPUTERS Operating Manual 2 CONTENTS Before Turning on Your PED... 4 Power... 5 ON... 5 OFF... 5 Modes... 6 Changing the MODE... 7 Connecting

More information

nblue TM BR-LE4.0-D2A (CC2564)

nblue TM BR-LE4.0-D2A (CC2564) Bluetooth 4.0 Low Energy Dual Mode Class 1 SoC Module nblue TM BR-LE4.0-D2A (CC2564) AT HOME. AT WORK. ON THE ROAD. USING BLUETOOTH LOW ENERGY WIRELESS TECHNOLOGY MEANS TOTAL FREEDOM FROM THE CONSTRAINTS

More information

Everything in your eyes. ismartviewpro. (For iphone) User Manual. Feb 2015 VER 3.0

Everything in your eyes. ismartviewpro. (For iphone) User Manual. Feb 2015 VER 3.0 IP Cloud Network Camera Everything in your eyes ismartviewpro (For iphone) User Manual Feb 2015 VER 3.0 1. ismartviewpro Summary ismartviewpro for iphone is our company developed application software based

More information

PROFESSIONAL DIGITAL TWO-WAY RADIO MOTOTRBO ANYWHERE. for ios USER GUIDE

PROFESSIONAL DIGITAL TWO-WAY RADIO MOTOTRBO ANYWHERE. for ios USER GUIDE PROFESSIONAL DIGITAL TWO-WAY RADIO MOTOTRBO ANYWHERE for ios USER GUIDE MOTOROLA, MOTO, MOTOROLA SOLUTIONS, MOTOTRBO and the Stylized M logo are trademarks or registered trademarks of Motorola Trademark

More information

Tektronix RSA306 USB Spectrum Analyzer

Tektronix RSA306 USB Spectrum Analyzer Tektronix RSA306 USB Spectrum Analyzer Simple Demos The Demo of the RSA306 is easy. Even you do not have signal generators, devices under test, or demo boards, using the whip antenna provided in box, you

More information

Sage CRM. Sage CRM 2016 R1 Mobile Guide

Sage CRM. Sage CRM 2016 R1 Mobile Guide Sage CRM Sage CRM 2016 R1 Mobile Guide Contents Chapter 1: Introduction to Sage CRM Mobile Solutions 1 Chapter 2: Setting up Sage CRM Mobile Apps 2 Prerequisites for Sage CRM mobile apps 3 Enabling users

More information

Universal Form-factor. Wi Fi Troubleshooting Made Easy

Universal Form-factor. Wi Fi Troubleshooting Made Easy AirMedic USB AirMedic USB is a powerful, easy-touse and affordable spectrum analysis tool that brings Wi-Fi troubleshooting to entry-level users. Built upon AirMagnet expertise in Wi-Fi troubleshooting,

More information

mobile facility management

mobile facility management mobile facility management The future is here By introducing Facility App, many companies will take a small step to begin their journey, for a giant leap, getting ready to implement Enterprise Apps With

More information

User Guide FOR TOSHIBA STORAGE PLACE

User Guide FOR TOSHIBA STORAGE PLACE User Guide FOR TOSHIBA STORAGE PLACE (This page left blank for 2-sided "book" printing.) Table of Contents Overview... 5 System Requirements... 5 Storage Place Interfaces... 5 Getting Started... 6 Using

More information

Monitoring and control of users in open environments on the Android platform

Monitoring and control of users in open environments on the Android platform Monitoring and control of users in open environments on the Android platform DEGREE IN COMMUNICATIONS SYSTEMS ENGINEERING AUTHOR: TUTOR: Eric Bella Pulgarín Raúl Sánchez Reillo DIRECTOR: Aitor Mendaza

More information

BLE113 DEVELOPMENT KIT

BLE113 DEVELOPMENT KIT BLE113 DEVELOPMENT KIT QUICK START Thursday, 14 March 2013 Version 1.5 Copyright 2000-2013 Bluegiga Technologies Bluegiga Technologies reserves the right to alter the hardware, software, and/or specifications

More information

Gladinet Cloud Access Solution Simple, Secure Access to Online Storage

Gladinet Cloud Access Solution Simple, Secure Access to Online Storage A Gladinet White Paper http://www.gladinet.com Gladinet Cloud Access Solution Simple, Secure Access to Online Storage October 12 Contents Introduction 2 Problem Statement 2 Previous Options Error! Bookmark

More information

Workday Mobile Security FAQ

Workday Mobile Security FAQ Workday Mobile Security FAQ Workday Mobile Security FAQ Contents The Workday Approach 2 Authentication 3 Session 3 Mobile Device Management (MDM) 3 Workday Applications 4 Web 4 Transport Security 5 Privacy

More information