How to decode an SMS which looks like this ...


Results 1 to 13 of 13

Threaded View

  1. #4
    Join Date
    May 2008
    Location
    Italy
    Posts
    825


    Did you find this post helpful? Yes | No

    Default

    I tried the above way but sorry its not working like this.
    You can tray with SEROUT which seems working better.


    Code:
    Num     var Byte [21]
    A0        var Byte
    
    Num[0] = "A"
    Num[1] = "T"
    Num[2] = "+"
    Num[3] = "C"
    Num[4] = "M"
    Num[5] = "G"
    Num[6] = "S"
    Num[7] = "="
    Num[8] = "+"
    Num[20]= 13 ' Last array variable MUST be 13
    
    ' The above are the constant value
    
    'From Num[9] to Num[19] load your number
    Num[9[] = "4"
    Num[10] = "4"
    Num[11] = ?? ' etc. etc.
    
    
    ' dial and send the sms using the for next loop
    For A0 = 0 to 20                         
    serout Tx,T9600,[Num[A0]]   ' Change baud rate as per your need.
    Next A0
    Al.
    Last edited by aratti; - 7th October 2009 at 11:24.
    All progress began with an idea

Similar Threads

  1. Replies: 11
    Last Post: - 19th August 2009, 15:23
  2. Replies: 0
    Last Post: - 21st May 2009, 00:58
  3. Replies: 13
    Last Post: - 12th May 2009, 17:26
  4. Siemens c55 sms control help please
    By camolas in forum mel PIC BASIC Pro
    Replies: 85
    Last Post: - 20th August 2008, 01:13
  5. Reading a SMS to an array
    By KA5MAL in forum GSM
    Replies: 3
    Last Post: - 17th June 2008, 17:24

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts