Mailisyorlik / artemisios

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add code/wire up wifi ranging image

Mailisyorlik opened this issue · comments

So your images are already setup and they are being displayed based on the distance string variable on line 32 in the TagdetailViewController. (Use Command + L and type in 32 to jump to the line number)

You need to setup ranging to the TagDetailViewController like we did in BluetoothFinderViewController. The difference is that the Finder controller we were ranging for all tags with our UUID. In the detail view, we want to range on tags with our UUID AND our major and minor numbers. Then everytime we range on it, it will have a proximity. Take a look at line 122 in BluetoothFinderViewController.

We want to use those proximities instead of the string Distance.

Ah. Okay. Thanks!

On Tuesday, May 27, 2014, Colin Loretz notifications@github.com wrote:

So your images are already setup and they are being displayed based on the
distance string variable on line 32 in the TagdetailViewController. (Use
Command + L and type in 32 to jump to the line number)

You need to setup ranging to the TagDetailViewController like we did in
BluetoothFinderViewController. The difference is that the Finder controller
we were ranging for all tags with our UUID. In the detail view, we want to
range on tags with our UUID AND our major and minor numbers. Then everytime
we range on it, it will have a proximity. Take a look at line 122 in
BluetoothFinderViewController.

We want to use those proximities instead of the string Distance.


Reply to this email directly or view it on GitHubhttps://github.com//issues/32#issuecomment-44367239
.

Liam