I want deploy a large number of iBeacons with the same UUID because we can't access dynamically to the UUID of the beacons detected. What is the limit number of the maximum Beacons with the same UUID ? I found some discussions with a number of 65000 approximately, is it correct ?
I'm thinking to use a Bluetooth transmitter to wake up the app and check the current location, the API calls return different UUID of the area and I check anyone with the low ranging to check which one is the closest to me.
How deploy an large number iBeacons
181 Views Asked by fl0_9 At
1
There are 1 best solutions below
Related Questions in BLUETOOTH
- Bluetooth connection to Sphero is lost when smartphone "goes to sleep"
- MFi Program by Apple
- Android Wear Device as iBeacon
- android - How to get a iBecon detection state when I kill app from Background?
- IOException: broken pipe when sending file from android device to PC via Bluetooth
- How deploy an large number iBeacons
- Send a Android BLE GATT Notification
- burst notifications with Bluetooth Low Energy on Android
- Is there a way to change bluetooth module's baud rate via Bluetooth connection with Android device?
- NFC Bluetooth handover - WITHOUT user confirmation
- Is it possible to create an app that when installed the user can easily turn Bluetooth/NFC ON and OFF by double clicking the Home button?
- Difference between attributes and services in BLE
- Global name 'bluetooth' is not defined
- iOS Bluetooth list of devices already connected?
- Bluetooth discovery not starting on first click
Related Questions in RASPBERRY-PI
- Using camera shutter to trigger MPU6050 on raspberry pi
- os.hostname() to return an IP
- Sparkfun SC16IS750 does not work on Raspberry Pi
- Raspberry Pi won't run script on boot
- Raspberry PI Compute Module - SPI1
- Arduino serial works fine with Debian but hangs with Raspbian
- MPI Processes Communication error
- Raspberry Pi script boot order
- Kivy on RaspberryPi (Raspbian) - unable to load any valuable window provider
- Raspberry Pi: printf() doesn't work with wiringPi
- separate frequencies from music
- Use same Python variable in multiple if-statements
- Nodejs app is continuously restarting
- How deploy an large number iBeacons
- RPi running script at boot then stops
Related Questions in BLUETOOTH-LOWENERGY
- How to read a characteristic (e.g. in WICED Smart example "speed_test")
- Android Wear Device as iBeacon
- How to get MAC Address of beacon when ranging and monitoring in iOS
- android - How to get a iBecon detection state when I kill app from Background?
- How to use core bluetooth framework to connect Headsets/handsfree?
- Android : auto connect to heartrate sensor ble
- bluetoothGatt writeCharacteristic returns false
- Android's BLE Service Discovery (BluetoothGatt#discoverServices()) and Low Energy vs BR/EDR
- How deploy an large number iBeacons
- Send a Android BLE GATT Notification
- burst notifications with Bluetooth Low Energy on Android
- How to share files with all other devices from my iOS device through application?
- Is it possible to create an app that when installed the user can easily turn Bluetooth/NFC ON and OFF by double clicking the Home button?
- Difference between attributes and services in BLE
- How do I use Meteor and a Cordova BLE plugin to connect to a BLE device
Related Questions in UUID
- wmic csproduct get UUID equivalent for Unix and Mac?
- How deploy an large number iBeacons
- MongoDB insert UUID only using middleware?
- AltBeacon's Android Beacon Library getting major, minor and UUID
- Sortable UUIDs and overriding ActiveRecord::Base
- identifierForVendor changes on reinstall
- Guid as PK of Sql Server Table
- android device.getUuids returns null
- Does two device will have the same 'UUID'
- How to identify iOS device uniquely instead of using UUID and UDID
- How to covert time based java.util.UUID to DateTIme
- cast uuid to varchar in postgres when I use sequelize
- Issues with GRAILS UUID and PSQL
- How to generate a random UUID which is reproducible (with a seed) in Python
- Alternative to bitwise operators in uuid creation
Related Questions in IBEACON
- how i get the mac of ibeacon or BLE
- How to get MAC Address of beacon when ranging and monitoring in iOS
- How deploy an large number iBeacons
- How to share files with all other devices from my iOS device through application?
- UUIDString unexpectedly found nil
- Swift, CoreBluetooth: services and characteristics
- Android Altbeacon Library BeaconSimulator on release version of application
- IOS: iBeacon scanning frequency when phone is locked?
- IOS: Available actions after iBeacon detection
- iBeacon iOS 8.3 only showing icon in locked screen when WIFI is activated
- Setting the major and minor value of iBeacon
- Altbeacon - Neither monitoring or ranging is working with no error
- Cannot use an array in AppDelegate in ViewController
- How to show alert just one time in Swift?
- How can i uniquely identify an iBeacon using android ALT Beacon library?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Bluetooth beacons (iBeacon and AltBeacon) have a three part identifier:
There are 8 bits per byte, so if you give all your beacons the same ProximityUUID, you can have 8*2*2=32 bits worth of combinations. That's 2^32 = 4,294,967,296 combinations.
If you have heard discussions of there only being ~65000 combinations, this was probably referring to the major or minor value by itself. Because the minor field has 16 bits (2 bytes x 8 bits/byte), there can be 2^16 = 65536 combinations in the minor field.