I am working to send SMS using java program.
The AT command is supping as a string. But the string format should be like
AT+CMGS="+33146290800"<CR>Please call me soon.<ctrl-Z>
.
I have to create string with the Carriage Return and CTRL-Z character.
If I add 0x0D and 0x1A with the string.
output:
AT+CMGS="+33146290800"13Please call me soon.26
How can I achieve the task? Can anyone help me to find a way out.