Hello folks,
I've written an application to send SMS through GSM mobile using AT commands.
It's not working at all. Heres the code below. Can any one tell me what I have done wrong.

Private Sub SendSMS()
Try
SMSPort.WriteLine("AT")

SMSPort.WriteLine("AT+CMGF=1" & vbCrLf)

SMSPort.WriteLine("AT+CSCA=""+9779851028801""" & vbCrLf)

SMSPort.WriteLine("AT+CMGS= ""+9779841892897"" " & vbCrLf)

SMSPort.WriteLine("hello" & vbCrLf & Chr(26))

Catch ex As Exception
MsgBox(ex.Message.ToString)
End Try
End Sub

Recommended Answers

All 4 Replies

What kind of phone are you using? Can you get commands to work through hyper terminal? My code works great using the same commands however your first "AT" command doesnt appear complete and is not followed by a carriage return. Try first sending "ATZ" + vbCr. There is no need to send a line feed with the carriage return so I would replace all the vbCrLf's with vbCR's. I also have never used a + before the phone numbers. Let me know if you have any luck and if not, if it works from Hyper Terminal or not. I can share my code if you can't get it going. The class I have written waits for valid responses from the phone before sending the next command. I guess it could be possible your program is sending the commands too quickly. Let me know.

Thanks,
Kenny

Hi Kenny.
Thanks a lot. The application worked.
Just as you suggested, I replaced "AT" with "ATZ" + vbCr and vbCrLf's with vbCR's.
Now its working well.My previous code worked perfectly with Hyper terminal.

It would be generous if you could let me study your class that waits for valid responses from the phone before sending the next command.

Bye.

This code is rather old (2005) and part of a bigger multithreaded app. I cut out pieces of the code and pasted below. The code will not run as it is but may give you an idea. I would write it quite differently today but with the same concept of a buffer holding all received data. Also some carriers allow you to send emails through SMS so I included that sub routine as well.

Private strPort As String = String.Empty
    Private WithEvents sp As SerialPort
    Private strBuffer As String = String.Empty

    Private Delegate Sub UpdateBufferDelegate(ByVal Text As String)

    Public Sub SendTextMessage(ByVal [To] As String, ByVal Message As String)

        sp = My.Computer.Ports.OpenSerialPort(strPort)

        SendData("ATZ" & vbCr, "OK")
        SendData("AT+CMGF=1" & vbCr, "OK")
        SendData("AT+CMGS=" & Chr(34) & [To] & Chr(34) & vbCr, ">")
        SendData(Message & vbCr, ">")
        SendData(Chr(26), "OK")

        sp.Close()

    End Sub

    Public Sub SendEmail(ByVal [To] As String, ByVal Subject As String, ByVal Body As String)

        sp = My.Computer.Ports.OpenSerialPort(strPort)

        SendData("ATZ" & vbCr, "OK")
        SendData("AT+CMGF=1" & vbCr, "OK")
        SendData("AT+CMGS=" & Chr(34) & "500" & Chr(34) & vbCr, ">")
        SendData([To] & " " & Subject & "# " & Body & vbCr, ">")
        SendData(Chr(26), "OK")

        sp.Close()

    End Sub

    ' Send data without waiting for specific response
    Private Sub SendData(ByVal Data As String)

        sp.Write(Data)

    End Sub

    ' Send data and wait for a specific response
    Private Sub SendData(ByVal Data As String, ByVal WaitFor As String)

        sp.Write(Data)
        WaitForData(WaitFor)

    End Sub

    Private Function WaitForData(ByVal Data As String, Optional ByVal Timeout As Integer = 10) As Boolean

        Dim StartTime As Date = Date.Now

        Do
            If InStr(strBuffer, Data) > 0 Then
                strBuffer = strBuffer.Substring((InStr(strBuffer, Data) - 1) + Data.Length)
                Return True
            End If

            If Date.Now.Subtract(StartTime).TotalSeconds >= Timeout Then
                Return False
            End If
        Loop

    End Function

    Private Sub UpdateBuffer(ByVal Text As String)

        strBuffer &= Text

    End Sub

    Private Sub sp_DataReceived(ByVal sender As Object, ByVal e As SerialDataReceivedEventArgs) Handles sp.DataReceived

        Dim dUpdateBuffer As New UpdateBufferDelegate(AddressOf UpdateBuffer)
        Dim strTmp As String = sp.ReadExisting

        dUpdateBuffer.Invoke(strTmp)

    End Sub
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.