internet via bluetooth on edison (1/2)

  • 投稿日:
  • by

Intel edsion から、bluetooth経由でinternetの接続する。
bluetoothの接続先は、Android(INFOBAR A03)。iPhoneでも同じようなもののはず。

1. bluetooth on

rfkill unblock bluetooth

2. bluetooth setup

今回は、bluetoothでいつも使うhcitoolでなくbluetoothctlを
利用する。

基本は、4つ。

power on
agent on
pair 相手先アドレス
connect 相手先アドレス

root@edison:~# bluetoothctl
[NEW] Controller 98:4F:EE:03:9A:7E edison [default]
[bluetooth]# power on
Changing power on succeeded
[bluetooth]# scan on
Discovery started
[CHG] Controller 98:4F:EE:03:9A:7E Discovering: yes
[NEW] Device 75:76:77:78:79:FF kuro
[bluetooth]# agent on
Agent registered
[bluetooth]# pair 75:76:77:78:79:FF
Attempting to pair with 75:76:77:78:79:FF
[CHG] Device 75:76:77:78:79:FF Connected: yes
Request confirmation
[agent] Confirm passkey 653895 (yes/no): yes
[CHG] Device 75:76:77:78:79:FF Modalias: bluetooth:v001Dp1200d1436
[CHG] Device 75:76:77:78:79:FF UUIDs:
        00001103-0000-1000-8000-00805f9b34fb
        00001105-0000-1000-8000-00805f9b34fb
        0000110a-0000-1000-8000-00805f9b34fb
        0000110c-0000-1000-8000-00805f9b34fb
        00001112-0000-1000-8000-00805f9b34fb
        00001116-0000-1000-8000-00805f9b34fb
        0000111f-0000-1000-8000-00805f9b34fb
        0000112f-0000-1000-8000-00805f9b34fb
        00001132-0000-1000-8000-00805f9b34fb
        00001200-0000-1000-8000-00805f9b34fb
        00001800-0000-1000-8000-00805f9b34fb
        00001801-0000-1000-8000-00805f9b34fb
[CHG] Device 75:76:77:78:79:FF Paired: yes
Pairing successful
[CHG] Device 75:76:77:78:79:FF Connected: no
[bluetooth]# connect 75:76:77:78:79:FF
Attempting to connect to 75:76:77:78:79:FF

あとは、PAN接続。けれど、opkgはbluz-utilが入っていないっぽい。
makeすることになるのなら、crosscomplie環境がいるかも。。。

ということで、続きは次回。