tags:

views:

322

answers:

2

hello,

I want to write 2 programs with C# one work on PC, the other work on a windows mobile phone.

So I want the PC program to send a signal via Bluetooth ( 1 byte maybe) to the windows mobile phone. and the mobile program (which work on background) handles and accepts this byte without the need of pairing.

how to code this?

please I need any kind of help.

+1  A: 

If your phone can use Serial Bluetooth adapters (RFCOMM), you could send it using the serial class.

Jimmie Clark
+2  A: 

My library 32feet.NET should be useful...

Device Discovery can be done with BluetoothClient.DiscoverDevices, and sending data should be done with classes BluetoothClient and BluetoothListener, see the User Guide for more info.

alanjmcf