mahound
Newbie level 5
Dear friends
I have a sim800 module and an Arduino. I need to store some messages in module's storage.
As you know, the module has 2 kind of storage: SM, ME.
I have configured module as follow:
that means AT+CMGW stores messages in ME.
Is there a command to show all messages in ME storage? As you know, AT+CMGL can only list messages in SM storage.
Is there a command to delete messages in ME storage?As you know, AT+CMGD can only delete messages in SM storage.
Thanks
I have a sim800 module and an Arduino. I need to store some messages in module's storage.
As you know, the module has 2 kind of storage: SM, ME.
I have configured module as follow:
PHP:
mySerial.println("AT+CMGF=1");
mySerial.println("AT+CNMI=1,2,0,0,0");
mySerial.println("AT+CPMS=\"SM\",\"ME\",\"SM\"");
that means AT+CMGW stores messages in ME.
Is there a command to show all messages in ME storage? As you know, AT+CMGL can only list messages in SM storage.
Is there a command to delete messages in ME storage?As you know, AT+CMGD can only delete messages in SM storage.
Thanks