Back to project page trifork-ibeacon-demo.
The source code is released under:
Apache License
If you think the Android project trifork-ibeacon-demo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.trifork.ibeacon.detectors; /*from ww w. j a v a2 s .c om*/ import org.altbeacon.beacon.BeaconParser; /** * @author Christian Melchior * * See http://stackoverflow.com/questions/18906988/what-is-the-ibeacon-bluetooth-profile for futher * info. */ public class IBeaconParser extends BeaconParser { public IBeaconParser() { super(); this.setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"); } }