Click here to Skip to main content
15,888,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I want to connect Cell Phone to my program, then control it (Send/Receive SMS)
all this by using C# Windows Form Application.


I have Nokia N70, If it does not work tell me what Phone Name and Model I must use
Please tell me the Code and Cell Phone type(Name and Model)

thank you!
Posted

Use AT commands[^] to send and receive SMS via your Nokia N70. Remember that it is using a diffent encoding (GSM default alphabet (GSM 03.38)[^]) where something like sending a "@" char is encoded as 0x00.

Use AT+CSCS to set TE character set to support the correct encoding.
AT+CSCS=? to list all supported encodings. But please note, that not all GSM units/modem support all types of encoding.

To really make it the correct way. You have to switch SMS message format to PDU encoding via AT+CMGF command.
Via PDU format, you can select the correct encoding, make long SMS ( over 160 char ), sending pictures, ring tone etc..

Send and Read SMS through a GSM Modem using AT Commands[^]
 
Share this answer
 
v2
For example, see Sending SMS using .NET[^].

If you don't like it, search. To topic is too popular; you will find tons of directions and code samples.

—SA
 
Share this answer
 
 
Share this answer
 
Do a search on the internet. You should find tons of links. Pick up one which is useful to you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900