SDK Subscription Packages
Free Community
Apps
LiPHY
- Standard VLC (Visible Light Communication) scanning app
VLCheckin
- Visible Light (VL) Check-in app
VLQueing
- Coming soon
Custom Apps with
SDK subscription
- Unlimited content IDs
- Best for small, site or corporate deployment
- SDK included
- Email support
- Beta access (for more than 500 content IDs)
- Optional modules (AR)
Smart Venue
App
Smartify your venue whether it is a showroom, office, lab, shopping mall, cafe, or restaurants. We can make your venue a smart venue with the following functions:
- Indoor positioning
- Contact tracing
- Location-based advertising
- Secured content access
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();