BluetoothでPythonを使用して通信する
私は、RPiとBluetooth携帯電話の間で通信するための簡単なプログラムを書こうとしています。私はこのチュートリアル、RPiのBluetooth Pythonチュートリアルを行った ところ、電話に接続でき、正しくバインドされました。それから私はこのpythonスクリプトを書きました: #! /usr/bin/python import serial from protocol import * from MotorControllerP import * def startBluetoothServer(): bluetoothSerial = serial.Serial("/dev/rfcomm1",baudrate=9600) print("Bluetooth connected") try: while 1: data = bluetoothSerial.readLine() if not data: break data = data.decode() print("Data received: "+data) if data[:3] == Client.INIT_HEY: print("Initiallizing connection") bluetoothSerial.write((Server.INIT_OK+"\n").enc$ print("Connection initiallized") elif data[:3] == …