Bluetooth를 통해 PC와 Android를 연결할 수 없습니다.

Bluetooth를 통해 PC와 Android를 연결할 수 없습니다.

블루투스를 사용하여 간단한 클라이언트/서버 애플리케이션을 만들고 싶습니다. Android를 클라이언트로 사용하고 Linux Mint 17 Cinnamon 64비트를 서버로 사용하고 싶습니다.

나는 이 스크립트를 찾아서 적용했습니다:

import os
import glob
import time
from bluetooth import *

base_dir = '/home/dougui/devices/'
device_folder = glob.glob(base_dir)[0]
device_file = device_folder + '/w1_slave'

def read_temp_raw():
    f = open(device_file, 'r')
    lines = f.readlines()
    f.close()
    return lines

def read_temp():
    lines = read_temp_raw()
    while lines[0].strip()[-3:] != 'YES':
        time.sleep(0.2)
        lines = read_temp_raw()
    equals_pos = lines[1].find('t=')
    if equals_pos != -1:
        temp_string = lines[1][equals_pos+2:]
        temp_c = float(temp_string) / 1000.0
        temp_f = temp_c * 9.0 / 5.0 + 32.0
        return temp_c

server_sock=BluetoothSocket( RFCOMM )
server_sock.bind(("",PORT_ANY))
server_sock.listen(1)

port = server_sock.getsockname()[1]

uuid = "94f39d29-7d6d-437d-973b-fba39e49d4ee"

advertise_service( server_sock, "AquaPiServer",
        service_id = uuid,
        service_classes = [ uuid, SERIAL_PORT_CLASS ],
        profiles = [ SERIAL_PORT_PROFILE ])

while True:
    print ("Waiting for connection on RFCOMM channel %d" % port)

    client_sock, client_info = server_sock.accept()
    print("Accepted connection from ", client_info)

    try:
        data = client_sock.recv(1024)
        if len(data) == 0: break
        print("received [%s]" % data)
        client_sock.send(data)
        print("sending [%s]" % data)

    except IOError:
        pass

    except KeyboardInterrupt:

        print("disconnected")

        client_sock.close()
        server_sock.close()
        print("all done")

        break

이제 Android 장치를 PC에 연결하고 싶습니다. 나는 팔로우한다그 지시.

내가 내린 몇 가지 명령은 다음과 같습니다.

➜  sudo hciconfig -a     
hci0:   Type: BR/EDR  Bus: USB
        BD Address: 00:11:22:98:76:54  ACL MTU: 1021:4  SCO MTU: 180:1
        UP RUNNING PSCAN ISCAN 
        RX bytes:18214 acl:297 sco:0 events:667 errors:0
        TX bytes:10341 acl:311 sco:0 commands:190 errors:15
        Features: 0xff 0x3e 0x09 0x76 0x80 0x01 0x00 0x80
        Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 
        Link policy: RSWITCH HOLD SNIFF 
        Link mode: SLAVE ACCEPT 
        Name: 'oscar-0'
        Class: 0x640100
        Service Classes: Rendering, Audio, Telephony
        Device Class: Computer, Uncategorized
        HCI Version: 2.0 (0x3)  Revision: 0x50
        LMP Version: 2.0 (0x3)  Subversion: 0x3
        Manufacturer: Mitel Semiconductor (16)

➜  hcitool dev                       
Devices:
        hci0    00:11:22:98:76:54

➜  sudo hidd --connect 50:A4:C8:3F:47:B2
Can't get device information: Success

휴대폰에서 컴퓨터 이름을 탭하려고 하면 검색해서 "미디어 오디오에 연결됨"이라고 간략하게 표시되지만 1분도 지나지 않아 연결이 끊어집니다. 연결이 성공하면 다음 메시지가 나타납니다.

Nov 18 18:26:32 oscar kernel: [ 4968.066411] input: 50:A4:C8:3F:47:B2 as /devices/virtual/input/input26

Android에서 Blue term 앱을 사용하고 싶습니다.

두 장치를 연결하려면 어떻게 해야 합니까?

관련 정보