Send MMS From Serial Port on Raspberry Pi

4173 2

IF ANY COMMAND BELOW DOES NOT WORK CORRECTLY ADD A  Semicolon ‘ ; ‘

 

In order to establish the PPP connection:

  • AT+CGDCONT? This should respond with the context you are on. This means you are ready to attach/connect.
  • AT+CGATT=1 (attach your modem)
  • AT+CGDATA=? (check what is the data mode)
  • AT+CGACT=1 (activate your connection)

Now you are on PPP, and then you talk over the modem using whatever your provider is using. It could be anything from direct HTTP to MMSE protocol.

For example, here is a complete transcript over HTTP. First, we need to setup the modem and connection information. All these commands should get a response of OK from the modem.

AT+CMMSINIT # Initialize the MMS method

AT+CMMSCURL=”some.url.com” # the MMS center URL

AT+CMMSCID=1 # Set bearer

AT+CMMSPROTO=”1.1.1.1″,8080 # MMS Proxy information

AT+SAPBR=3,1,”Contype”,”GPRS” # How you are sending

AT+SAPBR=3,1,”APN”,”foobar” # Set the APN

AT+SAPBR=1,1 # Activate the bearer context

Next, we prepare the message:

> AT+CMMSEDIT=1 # Enter edit mode

OK

> AT+CMMSDOWN=”PIC”,54321,30000 # Download a pic that is 54321 bytes

# and set the latency

# for the download to 30000 ms

CONNECT                         # This means, ready to receive data

# so send your file

OK                            # Data received

> AT+CMMSRECP=”123456789″       # Set the recipient

OK

> AT+CMMSVIEW                   # View your message

(your message)

OK

> AT+CMMSSEND                   # Send the message

OK                             # Message sent

> AT+CMMSEDIT=0                 # Exit edit mode, and clear the buffer

OK

 

 

IN OUR CASE USE :

Some.url.com = http://smpl.mms.msg.eng.t-mobile.com/mms/wapenc

foobar = simple

 

http://www.jarzebski.pl/datasheets/SIM900_mms-121012-1.02.pdf

 

MMS Proxy: 216.155.165.50:8080

TCP Connection over GPRS using SIM900 and AT Commands

Facebooktwitterredditpinterestlinkedinmail

Related Post

GPS AT Commands

Posted by - October 18, 2015 0
AT+CGPSPWR? if off : AT+CGPSPWR=1 Get status : AT+CGPSSTATUS? Get GPS : AT+CGPSINF RESET CODES : What mode ? –…

Make Them Blink

Posted by - November 15, 2015 0
You will need: 4 complete sets of LED’s and wires (see last lesson) The first thing you will need to…

Pi Camera Resolution Fix

Posted by - October 24, 2015 0
[crayon-662858477eb48023055150/] Keep Reading : Wire camera to pi while loop Hello World Remote ssh connect from iPad P.C. and laptop…

Identify USB device and discover its name and port

Posted by - October 17, 2015 0
Download latest PyUSB from : http://sourceforge.net/projects/pyusb/files/PyUSB%201.0/1.0.0-beta-2/pyusb-1.0.0b2.tar.gz/download Place file “pyusb-1.0.0b2.tar.gz” on your desktop gunzip <pyusb-1.0.0b2.tar.gz |tar xvfp - cd pyusb-1.0.0b2 sudo ./setup.py…

Wire camera to pi

Posted by - October 24, 2015 0
Install camera software & configure pi One picture program One picture per blink cycle Print proto time on picture  …

There are 2 comments

  1. a couple questions…
    MMS PROXY… what is it ? how do you obtain the IP address and port number for it ???
    also, “PIC”, is that the file name of the image file ???

    Reply
    1. I found my MMS Proxy on a list of MMS details on google, but I can’t find the page now. PIC is the kind of file you are sending, it can also be set to TXT and other things, please see the PDF that I referenced at the bottom of the article.

      Reply
  2. Pingback: Super Simple Google AIY Surveillance Camera – Not A Bomb

Leave a Reply to Elijah Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.