Skip to content

Instantly share code, notes, and snippets.

@randyzwitch
Created February 22, 2015 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randyzwitch/6a1a12abae0ab8063140 to your computer and use it in GitHub Desktop.
Save randyzwitch/6a1a12abae0ab8063140 to your computer and use it in GitHub Desktop.
Estimote file
//
// ESTDistanceDemoVC.m
// Examples
//
// Created by Grzegorz Krukiewicz-Gacek on 17.03.2014.
// Copyright (c) 2014 Estimote. All rights reserved.
//
#import "ESTDistanceDemoVC.h"
#import "ESTBeaconManager.h"
/*
* Maximum distance (in meters) from beacon for which, the dot will be visible on screen.
*/
#define MAX_DISTANCE 20
#define TOP_MARGIN 150
@interface ESTDistanceDemoVC () <ESTBeaconManagerDelegate>
@property (nonatomic, strong) ESTBeacon *beacon;
@property (nonatomic, strong) ESTBeaconManager *beaconManager;
@property (nonatomic, strong) ESTBeaconRegion *beaconRegion;
@property (nonatomic, strong) UIImageView *backgroundImage;
@property (nonatomic, strong) UIImageView *positionDot;
@end
@implementation ESTDistanceDemoVC
- (id)initWithBeacon:(ESTBeacon *)beacon
{
self = [super init];
if (self)
{
self.beacon = beacon;
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Distance Demo";
/*
* UI setup.
*/
self.backgroundImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"distance_bkg"]];
self.backgroundImage.frame = [UIScreen mainScreen].bounds;
self.backgroundImage.contentMode = UIViewContentModeScaleToFill;
[self.view addSubview:self.backgroundImage];
self.view.backgroundColor = [UIColor whiteColor];
UIImageView *beaconImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"beacon"]];
[beaconImageView setCenter:CGPointMake(self.view.center.x, 100)];
[self.view addSubview:beaconImageView];
self.positionDot = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"black_dot"]];
[self.positionDot setCenter:self.view.center];
[self.view addSubview:self.positionDot];
/*
* BeaconManager setup.
*/
self.beaconManager = [[ESTBeaconManager alloc] init];
self.beaconManager.delegate = self;
self.beaconRegion = [[ESTBeaconRegion alloc] initWithProximityUUID:self.beacon.proximityUUID
major:[self.beacon.major unsignedIntValue]
minor:[self.beacon.minor unsignedIntValue]
identifier:@"RegionIdentifier"
secured:self.beacon.isSecured];
//Randy specific settings
//Modified ESTBeaconDefinitions.h
[self.beaconManager startMonitoringForRegion:
[[ESTBeaconRegion alloc]
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID
major:9207 minor:41376 identifier:@"randy-LR-backwall"]];
[self.beaconManager startMonitoringForRegion:
[[ESTBeaconRegion alloc]
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID
major:44318 minor:3914 identifier:@"randy-LR-frontdoorway"]];
[self.beaconManager startMonitoringForRegion:
[[ESTBeaconRegion alloc]
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID
major:44307 minor:34759 identifier:@"randy-LR-rightwall"]];
[self.beaconManager startMonitoringForRegion:
[[ESTBeaconRegion alloc]
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID
major:3931 minor:14217 identifier:@"randy-LR-leftwall"]];
[self.beaconManager startRangingBeaconsInRegion:self.beaconRegion];
}
- (void)viewDidDisappear:(BOOL)animated
{
[self.beaconManager stopRangingBeaconsInRegion:self.beaconRegion];
[super viewDidDisappear:animated];
}
#pragma mark - ESTBeaconManager delegate
- (void)beaconManager:(ESTBeaconManager *)manager didRangeBeacons:(NSArray *)beacons inRegion:(ESTBeaconRegion *)region
{
ESTBeacon *firstBeacon = [beacons firstObject];
[self updateDotPositionForDistance:[firstBeacon.distance floatValue]];
}
#pragma mark -
- (void)updateDotPositionForDistance:(float)distance
{
NSLog(@"distance: %f", distance);
float step = (self.view.frame.size.height - TOP_MARGIN) / MAX_DISTANCE;
int newY = TOP_MARGIN + (distance * step);
[self.positionDot setCenter:CGPointMake(self.positionDot.center.x, newY)];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment