ESTLocationBuilder manually setup loaction

Hello!

I try to use indoor location in IOS using your beacons and IndoorSDK.

But I have a problem with manual creating ESTLocationBuilder. I try to get my indoor location but always receive error "Error Domain=com.estimote Code=404 "Can't determine position outside the location." UserInfo=0x175b2100 {NSLocalizedDescription=Can't determine position outside the location.}".
I have a room with size: 2.10x3.85 and rotation according north 35 degrees. Is my following code for create location builder right:

ESTLocationBuilder *locationBuilder = [ESTLocationBuilder new];
[locationBuilder setLocationBoundaryPoints:@[[ESTPoint pointWithX:0 y:0],
[ESTPoint pointWithX:3.67 y:0],
[ESTPoint pointWithX:3.67 y:2.10],
[ESTPoint pointWithX:0 y:2.10]]];
[locationBuilder setLocationOrientation:35];

Hi Artem—are you adding beacons to your locationBuilder as well? Take a look at this example:

[locationBuilder addBeaconIdentifiedByMac:@"aabbccddeeff"
                   atBoundarySegmentIndex:0
                               inDistance:2
                                 fromSide:ESTLocationBuilderLeftSide];

UPDATE: Changed the example MAC address from "AA:AA:AA:AA:AA:AA" to "aabbccddeeff", the latter (no colons, lowercase) is the correct format to use here.

I would like to add that @"AA:AA:AA:AA:AA:AA" doesn't seem to be the correct format for the MAC address, at least it wouldn't work for me. I found this format @"aaaaaaaaaa" , without the colon and capitalization, worked!

Yup, I just blindly copy-pasted from our Indoor SDK's README, replicating the mistake. Sorry about that!

I fixed my reply above (for any future readers) and the README file.

It's disappointing. You need to fix that or at least fix error message.