I am have Bluno nano and would like to connect it my pc(Ubuntu 16.06) and receive information via blue tooth. some online Q&A but unable to make it work.
I paired Bluno nano my pc (checked via -
$ bluetoothctl
, [bluetooth]# paired-devices).After that I ran
$ sudo rfcomm bind 0 F4:5E:AB:AA:BB:CC 1
but I am unable to see /dev/rfcomm0
. Do I need to create any config files ?
Connection to blutooth is done by the following commands
$ rfkill list all
$ sudo rfkill unblock bluetooth
$ sudo hciconfig hci0 up
$ sudo bluetoothctl
[bluetooth]# power on
[bluetooth]# discoverable on
[bluetooth]# agent on
[bluetooth]# pairable on
[bluetooth]# scan on
[bluetooth]# scan off
[bluetooth]# connect F4:5E:AB:AA:BB:CC
[bluno]# pair F4:5E:AB:AA:BB:CC
[bluno]# trust F4:5E:AB:AA:BB:CC
sudo apt install gnome-bluetooth pulseaudio-module-bluetooth
which installs some bluetooth stuff alongside the bluez – ptetteh227 Apr 18 '18 at 15:49