Can I write pocket PC bluetooth program by using C# ?

A

Alvin Lau

Can I write pocket PC bluetooth program by using C# ?
It seems so difficult to find the library?
If it is possible , where can i find the reference of these kind of
program ?
 
G

Guest

Bluetooth simply emulates a serial port, network interface, keyboard, mouse,
or sound card. You interact with this emulated device the same way you do
with native devices that have the same functionality. None of this requires a
dedicated SDK.

What are you trying to do with it? Just get some data to another computer?
Are the two machines already paired?

If that's the case, you just need to use the bluetooth serial port to do
your bidding. This works just like the other serial ports: the simplest way
is to just open a stream to "COMx:", where x is the serial port that is
assigned to your bluetooth connection. You can also connect your devices
through TCP/IP using the personal network Bluetooth profile. Then your PDA
can exchange data with any PC on your LAN, or even through the Internet.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top