如何使用flutter_blue检测Mindstorm EV3

时间:2019-10-16 11:25:22

标签: flutter bluetooth mindstorms ev3

我正在尝试使用ev3dev和python在Mindstorm EV3上设置蓝牙服务器。

服务器似乎工作正常,因为它是蓝牙服务器套接字的非常基本的实现。

#!/usr/bin/env python3
import bluetooth
from ev3dev2.sound import Sound

sound = Sound()

server_sock = bluetooth.BluetoothSocket(bluetooth.RFCOMM)

port = 1
server_sock.bind(("", port))
server_sock.listen(1)

sound.speak("Accepting connections on port " + str(port))

client_sock, address = server_sock.accept()
sound.speak("Accepted connection from " + str(address))

data = client_sock.recv(1024)
sound.speak("received " + str(data))

client_sock.close()
server_sock.close()

我现在遇到的问题是我似乎无法在抖动应用程序中检测到来自EV3的蓝牙信号。我可以找到其他设备,也可以在手机的蓝牙设置中找到EV3,只是该应用无法检测到它。

这是我用来检测蓝牙设备的代码

_btSubscription = _flutterBlue.scan().listen((scanResult) {
    if (scanResult.device.name.isEmpty || _detectedDevices.contains(scanResult.device))
        return;

        print('Found Bluetooth device: (${scanResult.device.name})');

        _detectedDevices.add(scanResult.device);

EV3确实设置了名称,因此不会因名称检查而被忽略。

任何建议都值得赞赏。

预先感谢

1 个答案:

答案 0 :(得分:0)

这是一个古老的问题,但是将其发布给以后的读者。

请注意,蓝牙有许多版本/变体,并且并非全部兼容。 flutter_blue软件包用于BLE(低能耗),这是蓝牙4.0中引入的一项最新技术,自2015年以来在手机中很常见 参见https://en.wikipedia.org/wiki/Bluetooth#Specifications_and_features

Lego EV3与较旧的笔记本电脑一样使用Bluetooth V2.1 EDR(经典蓝牙),因此这就是flutterBlue.scan()无法“看到”这些设备的原因。 另请参见https://superuser.com/questions/502825/how-can-i-find-out-what-version-of-bluetooth-my-laptop-supports

如果要在Flutter上使用Bluetooth Classic,请查看其他软件包,例如https://pub.dev/packages/flutter_bluetooth_serial。 (我并不是说这将适用于EV3,但至少是正确的蓝牙!)