|
@@ -21,9 +21,11 @@ class SpacePositioningController:
|
|
|
for ibeacon in ibeacon_list:
|
|
|
if ibeacon.rssi != 0:
|
|
|
strongest = ibeacon
|
|
|
+ logger.debug(strongest)
|
|
|
strongest_id = str(strongest.major) + '-' + str(strongest.minor)
|
|
|
break
|
|
|
|
|
|
+ logger.debug(strongest_id)
|
|
|
return self.ibeacon_space_dict.get(strongest_id)
|
|
|
|
|
|
|