This repository is based on linux-ibeacon by dburr. It allows the emulation of different beacon formats:
- iBeacon
- Eddystone-UID
- Kontakt Scan Response
sudo python3 ibeacon.py -u ffffffff-bbbb-cccc-dddd-eeeeeeeeeeee -M 13 -m 12
sudo python3 ibeacon.py [-u|--uuid=<UUID> (default=aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee)]
[-M|--major=<major> (0-65535, default=0)]
[-m|--minor=<minor> (0-65535, default=0)]
[-p|--power=<power> (0-255, default=200)]
[-d|--device=<BLE device to use> (default=hci0)]
[-h|--help]
sudo python3 eddystone_uid.py -N eddystone -i uid
sudo python3 eddystone_uid.py [-N|--namespace=namespace (10-byte, default=fedcba9876)]
[-i|--instance=instance (6-byte, default=123456)]
[-p|--power=power (0-255, default=200)]
[-d|--device=BLE device to use (default=hci0)]
[-h|--help]
sudo python3 kontakt.py -a Kontakt
sudo python3 kontakt.py [-a|--advertisement=advertisement (10-byte, default=fedcba9876)]
[-p|--power=power (0-255, default=200)]
[-d|--device=BLE device to use (default=hci0)]
[-h|--help]
This repository is licensed under the MIT license.
Copyright 2019 Wolfhard Fehre
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.