Pythonを使用して、BluetoothのRSSI値を取得したい。
Raspberry Pi 2を使って、スマートフォン端末のRSSI値をPythonで取得する方法が分かりません。よい方法があればお教え頂けませんでしょうか?
下記のコードは、Bluetoothを利用してユーザの入退室の時間を記録するものです。
このコードに、複数のスマートフォン端末がBluetoothの通信範囲に入っている場合、RSSI値が最も高い端末に条件分岐する機能を追加したいです。
環境はPython2.7.9、PyBluez0.2.2を使用しています。
import bluetooth
import time
print "In/Out Board"
while True:
print "Checking " + time.strftime("%a, %d %b %Y %H:%M:%S", time.gmtime())
result = bluetooth.lookup_name('00:00:00:00:00:00', timeout=5)
if (result != None):
print "John: in"
else:
print "John: out"
result = bluetooth.lookup_name('00:00:00:00:00:00', timeout=5)
if (result != None):
print "Paul: in"
else:
print "Paul: out"
time.sleep(60)