Bluetooth mouse / keyboard emulation

I find it difficult to find software that will emulate a Bluetooth keyboard (and / or mouse) that follows the HID standard. I already found one, but I could not get it to work: http://mulliner.org/bluetooth/xkbdbthid.php

I’m only interested in a solution that uses the HID standard so that other machines can immediately recognize a soft Bluetooth device hidden without the need for any pre-installed programs. (Running on Windows or Linux, if possible.)

Is it possible to write code in java to emulate Bluetooth hidden devices?

Any help would be greatly appreciated, thanks!

+5
source share
3 answers

It has been a while since you asked the question, but I will add this answer anyway, this may help you or someone else.

I am also interested in Bluetooth HID emulation, ideally with some Java / Android codes. However, I came across this Python script / project:

http://code.google.com/p/hidemulator

I have not tried this code myself, but from what I see, the script is quite simple. It currently only supports the six-axis PS3 controller, but maybe you (or I, if I ever find the time) could adapt the keyboard and mouse routines for the Nokia project in a Python script (or convert it to Java / Groovy, which is my ultimate goal ;-)).

Greetings

Rich

+3
source

This is not what you are looking for, but for Android devices.

AndroHid http://code.google.com/p/androhid/

. , Nexus S - Cyanogen 9

+1

btkbdd does this for Linux with Bluez. See: https://github.com/lkundrak/virtkbd/blob/master/btkbdd.pod

+1
source

All Articles