SDK Subscription Package
SDK Subscription Packages
Freebie
- Unlimited content IDs
- Standard LiPHY app
- Content management
- Detailed log portal
- No SDK
Indie
- Maximum 10 content IDs
- Best for small deployment
- SDK included
- Community support
Standard
- Maximum 100 content IDs
- Best for site deployment
- SDK included
- Email Support
- Optional modules (AR)
Business
- Maximum 500 content IDs
- Best for corporate wise deployment
- SDK included
- Phone Support
- Beta Access
- Optional modules (AR)
Easy to integrate
We have prepared a hassle-free SDK for you to focus on the application of Visible Light Communication.
iOS
self.lightManager = [[LFLightManager alloc] init]; self.lightManager.isFront = YES; self.lightManager.delegate = self; [self.lightManager startTracking]; - (void)lightManager:(LFLightManager *)manager didTrackLight:(LFLight *)light { // do the magic here }
Android
this.lightManager = new LightManager(context); this.lightManager.setIsFront(true); this.lightManager.setLightTrackingCallback(new LightTrackingCallback() { @Override public void didTrackLight(LightBeacon beacon) { // do the magic here } }); this.lightManager.startTracking();