* [Bluez-users] HID Keyboard Emulator enquiry
@ 2005-05-19 14:27 Anthony Jewell
2005-05-19 15:08 ` Marcel Holtmann
0 siblings, 1 reply; 4+ messages in thread
From: Anthony Jewell @ 2005-05-19 14:27 UTC (permalink / raw)
To: Bluez Users
Hi,
Bluez - love it well done to you all!
I'm looking for a HID Bluetooth keyboard emulator for linux so that I
can type to my Nokia phone from my PC. I tried google but no luck.
Does anyone know if such a thing already exists. If not I'm willing to
write one.
Regards,
Tony Jewell
--
Tony Jewell Tony.Jewell@cregganna.com
Cregganna Computer Consultants Ltd. http://www.cregganna.com/
-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Bluez-users] HID Keyboard Emulator enquiry
2005-05-19 14:27 [Bluez-users] HID Keyboard Emulator enquiry Anthony Jewell
@ 2005-05-19 15:08 ` Marcel Holtmann
2005-05-19 16:10 ` Anthony Jewell
0 siblings, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2005-05-19 15:08 UTC (permalink / raw)
To: bluez-users
Hi Tony,
> I'm looking for a HID Bluetooth keyboard emulator for linux so that I
> can type to my Nokia phone from my PC. I tried google but no luck.
does your phone support HID-host?
> Does anyone know if such a thing already exists. If not I'm willing to
> write one.
At the moment nothing like this exists.
Regards
Marcel
-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Bluez-users] HID Keyboard Emulator enquiry
2005-05-19 15:08 ` Marcel Holtmann
@ 2005-05-19 16:10 ` Anthony Jewell
2005-05-19 16:57 ` Marcel Holtmann
0 siblings, 1 reply; 4+ messages in thread
From: Anthony Jewell @ 2005-05-19 16:10 UTC (permalink / raw)
To: Bluez Users
On Thu, 2005-05-19 at 16:08, Marcel Holtmann wrote:
> > I'm looking for a HID Bluetooth keyboard emulator for linux so that I
> > can type to my Nokia phone from my PC. I tried google but no luck.
>
> does your phone support HID-host?
>
I believe it does - it supports the Su-8W Bluetooth keyboard.
http://www.nokia.com/nokia/0,,67021,00.html
I have downloaded the phone's Symbian app and its looking for keyboards
- I don't understand hcidump output so can't give a definitive answer as
to what its looking for - I assume is HID.
(Can post hcidump output if you would like.)
> > Does anyone know if such a thing already exists. If not I'm willing to
> > write one.
>
> At the moment nothing like this exists.
Great! Time to write some code! I assume I have to allocate a channel,
advertise it with sdp, listen for a connection and the rest is just
application code.....
Any pointers to a similar bluez app I can copy the bluetooth stuff
from..... Any manuals pages for coding to the bluez sdp and socket
interfaces?
Anthony
--
Tony Jewell Tony.Jewell@cregganna.com
Cregganna Computer Consultants Ltd. http://www.cregganna.com/
-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Bluez-users] HID Keyboard Emulator enquiry
2005-05-19 16:10 ` Anthony Jewell
@ 2005-05-19 16:57 ` Marcel Holtmann
0 siblings, 0 replies; 4+ messages in thread
From: Marcel Holtmann @ 2005-05-19 16:57 UTC (permalink / raw)
To: bluez-users
Hi Anthony,
> > > I'm looking for a HID Bluetooth keyboard emulator for linux so that I
> > > can type to my Nokia phone from my PC. I tried google but no luck.
> >
> > does your phone support HID-host?
> >
> I believe it does - it supports the Su-8W Bluetooth keyboard.
>
> http://www.nokia.com/nokia/0,,67021,00.html
>
> I have downloaded the phone's Symbian app and its looking for keyboards
> - I don't understand hcidump output so can't give a definitive answer as
> to what its looking for - I assume is HID.
>
> (Can post hcidump output if you would like.)
I just installed the software on my Nokia 6600 and it is searching for
the Device ID record and the HID service record.
< ACL data: handle 42 flags 0x02 dlen 24
L2CAP(d): cid 0x0067 len 20 [psm 1]
SDP SSA Req: tid 0x0 len 0xf
pat uuid-16 0x1200 (PNPInfo)
max 65535
aid(s) 0x0000 - 0xffff
cont 00
> ACL data: handle 42 flags 0x02 dlen 14
L2CAP(d): cid 0x0041 len 10 [psm 1]
SDP SSA Rsp: tid 0x0 len 0x5
count 2
cont 00
< ACL data: handle 42 flags 0x02 dlen 24
L2CAP(d): cid 0x0067 len 20 [psm 1]
SDP SSA Req: tid 0x1 len 0xf
pat uuid-16 0x1124 (HID)
max 65535
aid(s) 0x0000 - 0xffff
cont 00
> ACL data: handle 42 flags 0x02 dlen 14
L2CAP(d): cid 0x0041 len 10 [psm 1]
SDP SSA Rsp: tid 0x1 len 0x5
count 2
cont 00
Both service records are not available and thus it fails.
> > > Does anyone know if such a thing already exists. If not I'm willing to
> > > write one.
> >
> > At the moment nothing like this exists.
>
> Great! Time to write some code! I assume I have to allocate a channel,
> advertise it with sdp, listen for a connection and the rest is just
> application code.....
Two channels. L2CAP PSM 17 and PSM 19.
> Any pointers to a similar bluez app I can copy the bluetooth stuff
> from..... Any manuals pages for coding to the bluez sdp and socket
> interfaces?
Not really, but this is straight forward socket programming. But you
need to use HIDP and HID reports and upper protocol.
Regards
Marcel
-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-05-19 16:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-19 14:27 [Bluez-users] HID Keyboard Emulator enquiry Anthony Jewell
2005-05-19 15:08 ` Marcel Holtmann
2005-05-19 16:10 ` Anthony Jewell
2005-05-19 16:57 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox