views:

53

answers:

2

Mobile phone AT&T guidance?

I connect my China/ and Nokia phone using Bluetooth COM PORT CONNECTION. It says COM at 5.

How can I use this connection to send and receive SMSes using C#? For example, are there some resources to consult, or how would some example code look like?

A: 

I did a quick Google search, and I can't find a builtin API for exposing SMS capability via Bluetooth. However, from searching the documentation on the Nokia site, it appears the Symbian C++ libraries have an API for sending and receiving SMS, as well as libraries for interfacing with the bluetooth stack. You'll need to install the Symbian C++ IDE and toolchain for building apps. You can find information here on how to do that.

Dathan
for programming thanks
A: 

Are you using a bluetooth modem driver? If you are & its presenting the phone as a serial device on COM5 then you should be able to access it in the same was as any modem.

Try the GSMComm library, it also has a demo app you can use to test.

Alex K.
for accessing it using bluetooth modem thanks
GSMComm should work fine then (same for any GSM library)
Alex K.