Пытаюсь сделать отправку данных на Ардуино по БТ по голосовой команде.
Нашел такой вот скрипт на питоне
import android
import time
droid = android.Android()
mac = '00:00:00:00:00:00' #here you have to change the mac address by the one of your paired BT device
uuid = '00001101-0000-1000-8000-00805F9B34FB'
command = 'q'
droid.toggleBluetoothState(True) #if your BT is off you can switch it on
droid.bluetoothConnect(uuid,mac)
droid.bluetoothWrite(command)
time.sleep(2) #the script will pause for 2 seconds
droid.exit()
но он отказывается работать.
Может кто знает, как его доделать или другое простое консольно-скриптовое решение?