0

我想使用 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';
4

1 回答 1

0

是的,那就是 PHP。$variable 名称泄露了它:)

为了对 Python 做同样的事情,看看PyBluez。虽然它并不真正支持 Python 3,但可能有人已经启动了一个端口,但我不知道它在哪里

于 2013-06-24T10:37:22.293 回答