9880:f425c58cf8e9 | 9881:5ce653f9dac8 |
---|---|
1163 """ | 1163 """ |
1164 command = """ | 1164 command = """ |
1165 def has_bt(): | 1165 def has_bt(): |
1166 try: | 1166 try: |
1167 import _bleio | 1167 import _bleio |
1168 if hasattr(_bleio, 'adapter'): | 1168 if hasattr(_bleio, 'adapter') and _bleio.adapter is not None: |
1169 return True | 1169 return True |
1170 except ImportError: | 1170 except ImportError: |
1171 pass | 1171 pass |
1172 | 1172 |
1173 return False | 1173 return False |