diff options
author | moimadmax <moimadmax@users.noreply.github.com> | 2016-09-22 15:54:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-22 15:54:12 +0200 |
commit | d8c52ecad9c91603ff946298a83fb523048a3a13 (patch) | |
tree | e46053f3ca979b5d742ad20d37e0d9d2b7f9cbf3 /parrot_zik | |
parent | d588e452632aa520b33bccd88e012fbc6ce126e5 (diff) | |
download | pyParrotZikTCP-d8c52ecad9c91603ff946298a83fb523048a3a13.tar.xz pyParrotZikTCP-d8c52ecad9c91603ff946298a83fb523048a3a13.zip |
Add Parrot Zik 3 compatibility
In my Zik 3 the Vendor Specific UUID is 8B6814D3-6CE7-4498-9700-9312C1711F64, so i've added it in the discovery loops.
Diffstat (limited to 'parrot_zik')
-rw-r--r-- | parrot_zik/bluetooth_paired_devices.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/parrot_zik/bluetooth_paired_devices.py b/parrot_zik/bluetooth_paired_devices.py index 905819f..ba9ac9d 100644 --- a/parrot_zik/bluetooth_paired_devices.py +++ b/parrot_zik/bluetooth_paired_devices.py @@ -126,7 +126,8 @@ def connect(): name="Parrot RFcomm service", addr=mac) else: uuids = ["0ef0f502-f0ee-46c9-986c-54ed027807fb", - "8B6814D3-6CE7-4498-9700-9312C1711F63"] + "8B6814D3-6CE7-4498-9700-9312C1711F63", + "8B6814D3-6CE7-4498-9700-9312C1711F64"] service_matches = [] for uuid in uuids: try: |