Diesel444
Posts: 6
Joined: Sun Mar 16, 2014 4:11 am

Help Paring Bluetooth iPazzport Keyboard

Sun Mar 16, 2014 4:22 am

I'm a new Raspberry Pi user and new to Linux. Today I got my pi running on Raspbian and I managed to get the wifi dongle working. My next goal was to get my bluetooth iPazzport keyboard working.

I followed the steps here: http://www.ctheroux.com/2012/08/a-step- ... pberry-pi/

I got as far as the pairing step and I couldn't get any further. I did a Google search and discovered that there is a Bluetooth Manager application in Preferences so I tried that as well instead of the command line method. I can get the bluetooth dongle to scan and find the keyboard. When I try to set it up and get to the part where I have to enter a PIN on the bluetooth keyboard nothing happens. It is as if the keyboard is not sending characters to the pi for the paring process. I tried rebooting and trying again with no luck.

Any suggestions?

Diesel444
Posts: 6
Joined: Sun Mar 16, 2014 4:11 am

Re: Help Paring Bluetooth iPazzport Keyboard

Tue Mar 18, 2014 8:29 pm

Never mind, I figured it out.

kdawg7695
Posts: 4
Joined: Tue Nov 11, 2014 6:56 pm

Re: Help Paring Bluetooth iPazzport Keyboard

Tue Nov 11, 2014 7:00 pm

If you don't mind, could you tell me what you did to make it work? I have the same keyboard and i'm having the same problems.
Thanks!

Diesel444
Posts: 6
Joined: Sun Mar 16, 2014 4:11 am

Re: Help Paring Bluetooth iPazzport Keyboard

Wed Nov 12, 2014 3:36 pm

I don't remember. Let me look into what I did and I'll get back to you.


kdawg7695
Posts: 4
Joined: Tue Nov 11, 2014 6:56 pm

Re: Help Paring Bluetooth iPazzport Keyboard

Sun Nov 16, 2014 9:26 pm

Did you find anything yet?

Diesel444
Posts: 6
Joined: Sun Mar 16, 2014 4:11 am

Re: Help Paring Bluetooth iPazzport Keyboard

Mon Nov 17, 2014 9:15 pm

No, sorry, I haven't. I don't use my Raspberry Pi much right now. I'll have to go back and try to pair it again to see what trick I had to do. What I may have had to do was use a USB keyboard to enter the Bluetooth pairing code but I'm not sure.

kdawg7695
Posts: 4
Joined: Tue Nov 11, 2014 6:56 pm

Re: Help Paring Bluetooth iPazzport Keyboard

Mon Nov 24, 2014 6:26 pm

well maybe i can figure it out eventually

Xenomorph
Posts: 4
Joined: Mon Jan 05, 2015 9:22 pm

Re: Help Paring Bluetooth iPazzport Keyboard

Sun Jan 11, 2015 11:24 pm

I'm trying to get my iPazzPort bluetooth keyboard working, as well.

I found this thread when searching Google.

Seeing a post like "Never mind, I figured it out.", and then NO information beyond that is like a punch in the face.

HOW did you figure it out? What did you do? If you know how to make it work, why withhold information from others that might be struggling with the same thing?

Diesel444
Posts: 6
Joined: Sun Mar 16, 2014 4:11 am

Re: Help Paring Bluetooth iPazzport Keyboard

Sun Jan 11, 2015 11:35 pm

I don't remember, it was almost a year ago now. Since then, I haven't taken the time to go back and figure it out again. I'm pretty sure that I had to use a USB keyboard to enter the PIN and then it worked. If I get a chance I'll try to reproduce the issue and report back.

fruitoftheloom
Posts: 23549
Joined: Tue Mar 25, 2014 12:40 pm
Location: Delightful Dorset

Re: Help Paring Bluetooth iPazzport Keyboard

Sun Jan 11, 2015 11:48 pm

Xenomorph wrote:I'm trying to get my iPazzPort bluetooth keyboard working, as well.

I found this thread when searching Google.

Seeing a post like "Never mind, I figured it out.", and then NO information beyond that is like a punch in the face.

HOW did you figure it out? What did you do? If you know how to make it work, why withhold information from others that might be struggling with the same thing?
""Usually"" when paring a keyboard it should request a pin number is typed on the keyboard (this is done blind as the key presses do not type out anything on screen.

You will need to install bluez and blueman etal ;)
Rather than negativity think outside the box !
RPi 4B 4GB (SSD Boot) RaspiOS64 ARM64
Asus ChromeBox 3 Celeron is my other computer...

User avatar
Douglas6
Posts: 4874
Joined: Sat Mar 16, 2013 5:34 am
Location: Chicago, IL

Re: Help Paring Bluetooth iPazzport Keyboard

Mon Jan 12, 2015 1:45 am

Xenomorph wrote:Seeing a post like "Never mind, I figured it out.", and then NO information beyond that is like a punch in the face.
I sympathize, those types of posts are annoying. For a few extra seconds the poster could have saved others (and him/herself) the time needed to (re)find the solution. On the other hand, a post like
Xenomorph wrote:I'm trying to get my iPazzPort bluetooth keyboard working, as well.
doesn't help us with your problem. What have you tried so far? What is not working and how, including specific error messages or conditions? What hardware, OS and software is involved?

Xenomorph
Posts: 4
Joined: Mon Jan 05, 2015 9:22 pm

Re: Help Paring Bluetooth iPazzport Keyboard

Mon Jan 12, 2015 3:36 am

Douglas6 wrote:What have you tried so far? What is not working and how, including specific error messages or conditions? What hardware, OS and software is involved?
No errors. It's working now. The issue is the amount of complex guides with old, outdated info or recommendations of unnecessary packages or system changes.

From a new install, install just the Bluetooth stack and Python extension module it uses:

Code: Select all

# apt-get install bluez python-gobject
Press the sync button on the device, then query the device for its MAC:

Code: Select all

# hcitool scan
(assume a MAC of 00:00:00:00:00:00)

Add the device to the system:

Code: Select all

#  bluez-simple-agent hci0 00:00:00:00:00:00
(type a PIN on the Pi and press Enter, then type the same PIN on the Bluetooth Keyboard and press Enter)

Trust the device:

Code: Select all

# bluez-test-device trusted 00:00:00:00:00:00 yes
Connect to the device:

Code: Select all

# bluez-test-input connect 00:00:00:00:00:00 yes
That's it.

I've seen guides recommend installing the "bluetooth" package for just a keyboard (which isn't necessary, plus it tries to install around 20 other packages). I've seen guides suggest changes with the dbus service. I've seen guides recommend changing the file /usr/bin/bluez-simple-agent for some reason.

I'm using the latest Raspbian with multiple Bluetooth adapters.

One is the IOGear GBU521 from Micro Center (http://www.microcenter.com/product/3877 ... ro_Adapter).

One is the Monoprice MPBU4086 (http://www.monoprice.com/Search?keyword=9386).
Last edited by Xenomorph on Mon Jan 12, 2015 4:05 am, edited 1 time in total.

User avatar
Douglas6
Posts: 4874
Joined: Sat Mar 16, 2013 5:34 am
Location: Chicago, IL

Re: Help Paring Bluetooth iPazzport Keyboard

Mon Jan 12, 2015 3:52 am

Xenomorph wrote:The issue is the amount of complex guides with old, outdated info or recommendations of unnecessary packages or system changes.
I agree, BlueZ tends to change pretty abruptly.

By the way, you might want to double-check your own instructions. Looks like you are trusting twice, without ever having paired.

Xenomorph
Posts: 4
Joined: Mon Jan 05, 2015 9:22 pm

Re: Help Paring Bluetooth iPazzport Keyboard

Mon Jan 12, 2015 4:07 am

Douglas6 wrote:
Xenomorph wrote:The issue is the amount of complex guides with old, outdated info or recommendations of unnecessary packages or system changes.
I agree, BlueZ tends to change pretty abruptly.

By the way, you might want to double-check your own instructions. Looks like you are trusting twice, without ever having paired.
Whoops! Corrected, thanks.

When searching Google, I have to remember to go to Tools and specify something usually in the past 6 months. Lots of the information I find is from 2012 or 2013, and is no longer valid (adding various WiFi adapters, for example).

User avatar
Douglas6
Posts: 4874
Joined: Sat Mar 16, 2013 5:34 am
Location: Chicago, IL

Re: Help Paring Bluetooth iPazzport Keyboard

Mon Jan 12, 2015 4:23 am

And, as regards BlueZ, Debian Jessie is (relatively) imminent, and the game changes again, though (arguably) for the better, with a more 'one stop shopping' approach in bluetoothctl, and BLE support. Thanks for the keyboard guide.

Diesel444
Posts: 6
Joined: Sun Mar 16, 2014 4:11 am

Re: Help Paring Bluetooth iPazzport Keyboard

Wed Mar 11, 2015 4:33 pm

kdawg7695 wrote:well maybe i can figure it out eventually
Here's how I did it, you'll need another keyboard to get it paired.

-Go in to Bluetooth Manager in Preferences in the start menu
-If you've already plugged in the Bluetooth USB dongle you'll see a list of devices but not the iPazzport yet
-Press and hold the Bluetooth button on the iPassport until the third light blinks steadily
-The keyboard should show up in the devices list
-Select it and click the key icon to pair it
- A window will open asking for a code
-Using the main keyboard (not the iPazzport yet) enter a code like 0000 or 1234 and click OK
-Enter the same code on the iPazzport and click enter on the iPazzport
-The keyboard will now be paired but will not work yet
-With the iPazzport still selected in the devices list click Setup in Bluetooth Manager
-Another window will open allowing you to select the iPazzport as an input device, click Forward
-You'll now get a confirmation screen, click Close, and the iPazzport will now work
-You should add it to the trusted devices list by click the orange plus looking symbol

Let me know if you have any questions, I apologize for the long delay.

Destiny12
Posts: 3
Joined: Sun Feb 07, 2016 10:03 am

Re: Help Paring Bluetooth iPazzport Keyboard

Sun Feb 14, 2016 8:04 am

Umm, can somebody help me?
I just got a new raspberry pi 2, and my iPazzPort can't seem to connect.
How long does it need to charge and what colour is the LED when it's fully charged?
Plus I read the way to do it, but since im doing it on a TV screen, there is no other keyboard.
:?: :?: :?:
Please help me.... :(
Otherwise, I cant do anything on it.
The first time it worked for like, 5 mins then went off.
How do you do it?
(Or is it possible to boot up the pi 2 on a Windows PC?)

Return to “Beginners”