我想使用 Python 检查hcitool scan
已知 MAC 地址的 bash 命令的输出。
示例:我将手机的 MAC 地址保存为变量。然后,我检查所有由hcitool scan
. 像这样的东西:
for each (popen('hcitool scan') as $line)
if ($line == $mymac)
print 'Phone in the Bluetooth range';
else
print 'Your phone isn't in the Bluetooth range';