How to send an sms

42 visualizaciones (últimos 30 días)
kash
kash el 7 de Mzo. de 2014
Comentada: farhan el 3 de Nov. de 2022
I am working on a concept that if the process gets over i want to send sms to my mobile for this i used the code
i changed the number and com port but unable to send sms,i get my modem details displayed in command window ,but sms is not sent,i want to send sms to indian mobiles kindly help
  2 comentarios
shoaib hmed
shoaib hmed el 16 de Dic. de 2017
Maybe You enterd +971******
it works for me
%%%%%%%%%%%%%%%%Matlab code for sending SMS%%%%%%%%%%%% try clc; clear all; global BytesAvail; global A; global B; tx ='AT'; tx1=char(13); tx2=char(26); tx3='AT+CMGS="923159076826"'; % You have to replace this with the Receiver's Phone number tx4= ' This is a test msg '; %This is the msg body tx5='AT+CMGF=1';
s = serial('COM4', 'BaudRate', 230400); % You have to replace this with your 3G modem's COMport number fopen(s); s.Terminator = 'CR';
fprintf(s,'%s', tx); fprintf(s,'%s', tx1); BytesAvail=s.BytesAvailable; if(BytesAvail > 0), A=fread(s,BytesAvail,'char'); end A; sprintf('%c', A) %%%%%%%%%%%%%%%Send SMS%%%%%%%%%%%% fprintf(s,'%s', tx5); fprintf(s,'%s', tx1); fprintf(s,'%s', tx3); fprintf(s,'%s', tx1); fprintf(s,'%s', tx4); fprintf(s,'%s', tx2);
BytesAvail=s.BytesAvailable; B=fread(s,BytesAvail,'char'); fclose(s);
catch aException fclose(s); error(message('MATLAB:serial:fprintf:opfailed', aException.message)); end
if true
% code
end
farhan
farhan el 3 de Nov. de 2022
if i use 4g modem. will it work?

Iniciar sesión para comentar.

Respuestas (2)

Doug Hull
Doug Hull el 7 de Mzo. de 2014
  1 comentario
kash
kash el 8 de Mzo. de 2014
ya i tried even this ,the messgae is sent to mail,but in the in box ,it says that the message cannot be delivered,i changed the my carrie name ,even though message is not sent,kindly help

Iniciar sesión para comentar.


HEPHZIBAH THOMAS
HEPHZIBAH THOMAS el 13 de Nov. de 2018

Categorías

Más información sobre MATLAB Report Generator en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by