How to send an sms

39 Ansichten (letzte 30 Tage)
kash
kash am 7 Mär. 2014
Kommentiert: farhan am 3 Nov. 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 Kommentare
shoaib hmed
shoaib hmed am 16 Dez. 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 am 3 Nov. 2022
if i use 4g modem. will it work?

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Doug Hull
Doug Hull am 7 Mär. 2014
  1 Kommentar
kash
kash am 8 Mär. 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

Melden Sie sich an, um zu kommentieren.


HEPHZIBAH THOMAS
HEPHZIBAH THOMAS am 13 Nov. 2018

Kategorien

Mehr zu MATLAB Report Generator finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by