Тёмный

SIM900 GPRS TCP/IP AT Commands 

Ravi Pujar
Подписаться 8 тыс.
Просмотров 71 тыс.
50% 1

This video shows you how to communicate with TCP/IP socket using SIM900 GPRS AT Commands using a Hyper terminal kind of software. It shows you how to set up a connection to a server using a TCP/IP socket from SIM900 and also shows how to configure your Laptop/Desktop as a server using Socket test application which is available from SourceForge.net website.
You can also look at further articles on SIM900 at my blog www.raviyp.com.
I forgot to show you how to close the socket.
Use AT+CIPCLOSE command to close the socket.
For Arduino SIM900 GPRS TCP IP communication watch this video,
• SIM900 Arduino GPRS Co...
For more such tutorials visit www.raviyp.com
Downloads:
Socket test - sourceforge.net...
TMFT - www.dropbox.co...
Send me a mail to ravi@valetron.com

Опубликовано:

 

15 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 175   
@geethakrishnanpurushothama3452
Hello Ravi, I have given the following command AT+CIPSTART="TCP","59.93.32.26","747" OK CONNECT OK.. But at the SocletTest nothing is showing. (It is expected to show a message that new client is connected right?). Can you please help me figure it out?
@davidedery9404
@davidedery9404 5 лет назад
Hi Ravi. I have a question. I have a GPRS connected to a Raspberry PI3 that is sending SMS. My PI3 is connected to my house Wifi. I want to connect it to the SIM's 4G internet. There are many tutorials on how to connect it to a PPPoe from the GPRS. I want to know if there is going to be a conflict between sending SMS and connecting to 4G because they use the same Serial port ttyAMA0. Or the solution would be to connect the 2nd GRPS port to an USB port in PI3 so that SMS goes through AMA0 and 4G goes throug USB?
@hmb2a
@hmb2a 4 года назад
Hi Ravi. Thanks for your video. Is it possible to flow the data to sockTest and save them on a text file? or we can just watch the data on socketTest?
@ukaszwieckowski1890
@ukaszwieckowski1890 5 лет назад
Hi, I have problem. In my case AT+CIICR command shows: .+PDP: DEACT . .ERROR Please help me.
@benorhancan
@benorhancan 3 года назад
Sir, did you solve this problem?
@mohammedk.h.f3016
@mohammedk.h.f3016 Год назад
Thanks But how we can connect SIM900+UNO with another SIM900+UNO without using AT command but without the Socket and TFT programs?
@loryruta2149
@loryruta2149 5 лет назад
Hello Ravi, I found your tutorial really useful and I wanted to congrat with you! I was just wondering, is a pause needed after AT+CIPSEND command? I'm implementing it via software and seems that without a pause the command doesn't send nothing... Are you aware of that? Forgot to say that I disabled the prompt using AT+CIPSPRT=2
@RaviPujar
@RaviPujar 5 лет назад
Yes, pause is needed for each command to be processed by GSM module. Provide sufficient delay or use wait for response code to wait for module to get ready to accept next command. Don't forget to share and subscribe :)
@satwiksunkadmath3082
@satwiksunkadmath3082 5 лет назад
Hello Ravi i i am using sim7100E gsm module, the thing is that HTTP and TCP are not working please can u guide me how to send data using http or tcp.
@subham94
@subham94 5 лет назад
hii ravi i need your help ,i am making a tcp-ip via socket-ip with sim800 module can you givig me any suggestion
@TechBaumgartner
@TechBaumgartner 7 лет назад
Excellent video! I really appreciate your straight forward explanation - Thank you very much from Oklahoma City, OK, USA
@RaviPujar
@RaviPujar 7 лет назад
Hi Adam, - Greetings from India. - Thank you very much for the appreciation :)
@duckhoa
@duckhoa 7 лет назад
updated
@duckhoa
@duckhoa 7 лет назад
updated
@duckhoa
@duckhoa 7 лет назад
updated
@shashankmore321
@shashankmore321 7 лет назад
Can we use TCP for accessing any web pages or http links?If Yes,Can u please tell me? Your socket software shows IP as 0.0.0.0 but you used your PC IP which is different.Why?
@RaviPujar
@RaviPujar 7 лет назад
0.0.0.0 means that value is not used. Server ignores that value and opens a socket on given port number for listening. Leaving it 0.0.0.0 means you are opening a server at 127.0.0.1:747 if that is the port number you selected. For accessing from outside world you need Public IP.
@ilkeraykut7064
@ilkeraykut7064 2 года назад
I wanna use 2 sim900 as One of them server,one of them client .How can I do this?
@gauravtiwari8124
@gauravtiwari8124 8 лет назад
Brother every thing is working , in my case but there is a problem with socket as (ip closed by me) AT+CIPSTART="TCP","**********","21" . .AT+CIPSTART="TCP","***********","21" . . .OK . .CONNECT OK .220 MikroTik FTP server (MikroTik 6.28) ready so it is connected via some different one i think but socket is also not showing any connected client. plz help me brother.
@senan-online8628
@senan-online8628 4 года назад
Hi, really useful video. Thanks. But when I search my IP address it shows IPv6 address (looks like : 2700:4903:22df:b3f7:bcf4:5068:19b6:48e9). I am using SIM800 device to connect. Can you suggest how I can use the CIPSTART command in this case.
@RaviPujar
@RaviPujar 4 года назад
What network is yours?
@gustavoauyero4624
@gustavoauyero4624 7 лет назад
Hi Ravi, great video, thanks to share this knoledge. I need to connect to a remote microcontroler using SIM900, exchanging not too much data (100 bytes per hour) in order to check the machine status. In base to your experience wich is the best way to do it? Is this GPRS TCP/IP Method? How you solve the non fixed public IP in the Server Machine?Thanks again for your help... Gustavo
@RaviPujar
@RaviPujar 7 лет назад
Hi Gustavo Auyero, Thank you for the appreciation. You can use TCP/UDP/HTTP for retrieving data. You cannot connect without a static IP Because it keeps changing. Best way to do it is, Make the remote machine to update data to a intermediate server, Use free IOT servers available like Carriots and then get data from there whenever needed. If you can explain me the exact setup like which kind of machine or system is being used, and are you reading from a microcontroller through SIM900 to a PC, and what are the constraints. I can suggest better. Drop me a mail at ravi@valetron.com
@Kaczakat
@Kaczakat 7 лет назад
Thanks soo much from Poland, now I'm able to send data to Thingspeak after hours of searching solution. My modem is SIM800L, but still works.
@RaviPujar
@RaviPujar 7 лет назад
Greetings from India. Yes SIM800 and SIM900 have same commands. Glad it helped you. Don't forget to subscribe. :)
@usmanshaikh714
@usmanshaikh714 5 лет назад
Sir, i am working on sim808 module and trying to connect it with server with the steps you explained in this tutorial. when i give this command >>at+ cipstart="TCP","xxxxxxxxxxxxxxxx ", "747" i am getting the error STATE: IP STATUS CONNECT FAIL kindly guide me through this it is very important to me. thanks.
@noahmilam
@noahmilam 9 лет назад
I followed this video and was able to get to the AT+CIPSEND.On the server side it shows that the sim900 is connected. when I try to send my data to my server i get the message SEND OK and the server does not receive the data. the client then CLOSES. any help would be great on how to fix this.
@0zmax
@0zmax 7 лет назад
Very helpful ! But what are differences between AT+SAPBR and AT+CSTT ? Because for me both seem to enable GPRS service of the module...
@RaviPujar
@RaviPujar 7 лет назад
Thanks max. Glad it helped. Not sure about the exact difference. SIMCOM suggests AT+CSTT while dealing with TCP connections and AT+SAPBR while using HTTP and FTP connections as seen in their application notes. They have this option for running as a client or server in TCP mode but client only in HTTP mode and there is a MUX selection option where in you can have multiple connections to different servers at a time. So may be CSTT enables us to have multiple connections using TCP/UDP but SAPBR kind of restricts us with single HTTP/FTP connection mode. Am just guessing and i have a dropped a mail to SIMCOM support person and if they reply i will definitely let you know :)
@0zmax
@0zmax 7 лет назад
Ok, I see. Thank you, your supposition make sense and I will appreciate your feedback if SIMCOM will response you. I try to do some TCP connection with SIM800 at my office but it didn't work. Maybe because, behind my wifi router, there are other switches, devices and security services which bloc external connections.
@AsadAliCR
@AsadAliCR 8 лет назад
I have downloaded and run TMFT but my modem keeps writing to terminal window about the latest data fetched. and i cannot write to the tmft terminal. what should i do
@patilsshirish
@patilsshirish 8 лет назад
Hi Ravi your videos are very simple one and give complete information. I have one request do you have any AT command list for a RS232 to Wifi adaptor. Lets say the one like from Usconverters the model is WF5000. I would really appreciate if you can find this information. Thanks Ravi
@ukasz8532
@ukasz8532 7 лет назад
Hi Ravi, Thank You for your tutorial. Everythings it's working (at SIM900). I am sending massage to my IP(SEND OK). But I have one problem. I want 'listen' massage from my module but I don't see nothing. I try to use wireshark or your programs. Can you help me with it ? Sorry for my english.
@RaviPujar
@RaviPujar 7 лет назад
Hi Lukasz, You can send message to IP and receive back when the connection is still established by the client/module. You cannot initiate the connection from PC/server. If you are trying to make SIM900 as server, its little problematic. Watch my video on using SIM900 as TCP server.
@amitkotal181
@amitkotal181 7 лет назад
Hi Ravi, The video is very simple and easy to understand. I am using a SIM808 module, which has the same AT Commands as SIM900. I tried establishing a TCP connection according to the steps in the video, but after the CIPSTART command i always receive TCP CLOSED response. I tried many times, even by changing the simcards but the issue is the same. When I try to establish a TCP connection to the www.google.com, i get a response as CONNECT OK. Can you help in this?
@RaviPujar
@RaviPujar 7 лет назад
Hi Amit, It is due to the server port not being open or there is a firewall on the server which is not allowing your module to connect.
@amitkotal181
@amitkotal181 7 лет назад
Thanks for quick response. Can you please help me with the solution of the problem
@ElectroFriendly
@ElectroFriendly 4 года назад
Without port forwording, how is this possible??
@hmb2a
@hmb2a 4 года назад
Thanks for your video! I am going to send the data of my sensor to a server every two milliseconds (ms) via sim800. Is it possible to do this with such speed (sampling rate)? I do appreciate any help.
@RaviPujar
@RaviPujar 4 года назад
No, it will not be ideal as 2g speed is limited. If you keep connection open always on TCP then you can send about every 5 seconds for consistent results. Otherwise data will be lost. Don't forget to like share and subscribe :)
@hmb2a
@hmb2a 4 года назад
@@RaviPujar what about 4g?
@CopperMasud
@CopperMasud 8 лет назад
where can i get that TMFT terminal software please ??
@javadhakimi2455
@javadhakimi2455 6 лет назад
Hi Ravi, thanks it's very useful. but i have a problem... after this command: AT+CIPSTART="TCP","IP","port" i got: OK STATE: TCP CLOSED CONNECT FAIL what's the problem?
@RaviPujar
@RaviPujar 5 лет назад
Hi Javad, Please post your query here. www.embeddedadvice.com/ We can discuss Dont forget to share and subscribe :)
@GANESH2336
@GANESH2336 5 лет назад
same problem for me
@garavsg8154
@garavsg8154 5 лет назад
Your public ip is the router ip. Your PC is behind the router and is not visible publicly. Your PC has virtual IP not real IP.
@bebhavs
@bebhavs 8 лет назад
I am connected throw wifi, and when I am trying to start listening TCP server on test socket, It is listening to my local IP address of 10.50.15.86. I am unable to connect throw Public IP address 111.93.149.186. in the server there is an option of providing IP address there is if I trying 10.50.15.86 then it is working or if it is 0.0.0.0 (in this case also in able to connect throw 10.50.15.86 not with 111.93.149.186). can you please suggest me something ? or can you share your ipconfig cmd result Thanks
@RaviPujar
@RaviPujar 8 лет назад
I dont think it will work through WiFi as it will be a shared IP. Unless you have a static IP or have port forwarding kind of feature on your router it wont work. .
@diegovidela1482
@diegovidela1482 7 лет назад
Hi Ravi!Great video! Thanks a lot for sharing your knowledge so clear.I am working in a simple telemetry Project that consist in sending data from Arduino to internet over GPRS with SIM800L. I want to send values of analog and digital variables (sensors) attached to Arduino and put these values in a table or database in a website. Also I would need to send some instruction from the website to Arduino in order to control some digital output.Could you tell me which is the simplest method to achive this? TCP/IP Over GPRS like seen in this video or another method? Please give me some hints. Greetings from Argentina!
@RaviPujar
@RaviPujar 7 лет назад
Hi Deigo, Greetings from India :) Thank you for the appreciation. Glad you liked it. I suggest HTTP because you can easily send data to URL or end points using GET and POST requests. Look at my HTTP tutorials on SIM900 and GL865. I show how you can collect data using a PHP website in GL865 tutorial. There you can write simple code to save that to database. Alternatively you can use ready servers like Dreamfactory which provide ready to use endpoints for collecting and processing data. Just send your data in requests and it will be automatically saved in table you want. If you want asynchronous instructions to be received then you have to maintain a TCP connection open always, like in MQTT (Check out my tutorial on MQTT using SIM800) you can easily subscribe to a topic which can send instructions anytime. On HTTP you have to send data and wait for response for sent data, In this response you can pass your instruction or command to device. But you need to send data regularly or poll regularly to get instructions in time. And, Dont forget to Subscribe and share :)
@diegovidela1482
@diegovidela1482 7 лет назад
Thanks Ravi! :)Suscribed!
@therealspixycat
@therealspixycat Год назад
Very well explained!!
@VilizarSvetozarov
@VilizarSvetozarov 6 лет назад
Hello, i have problem with gprs, when i type AT+CIICR=? i get OK, but when i type AT+CIICR i get ERROR 50. With AT+CIPSTATUS i get 5 times IP INIT ?????? Can i solve this ?
@RaviPujar
@RaviPujar 6 лет назад
Hi, Could you please post here with details www.embeddedadvice.com/ , with data capture/screenshots. We can discuss Dont forget to Subscribe :)
@barokemind
@barokemind 9 лет назад
Hello, please, can you send me the download link of TMFT? thanks
@ezequielmartinezvazquez5969
@ezequielmartinezvazquez5969 6 лет назад
Excellent video! I needed to make this exact same test and now I know how. Thanks!
@RaviPujar
@RaviPujar 6 лет назад
Thank you for watching and don't forget to Subscribe :)
@KNO3Arts
@KNO3Arts 6 лет назад
Nice one Ravi! Very helpfull!
@raghutumati5178
@raghutumati5178 7 лет назад
Any idea what I would have to do, if I need to upload an image rather than data to the server? Is that even possible?
@RaviPujar
@RaviPujar 7 лет назад
I havent tried it but you need to use the same procedure but use base64 encoding for sending data as it is binary. And have your receiving side decode it back to binary. Also there is option for sending binary data using multipart file upload protocol. You should find it in HTTP protocol documentation for sending correct content type parameters for binary data.
@josedutra1358
@josedutra1358 7 лет назад
Congrats! Do you know these programs for mac?
@RaviPujar
@RaviPujar 7 лет назад
Thank you :) No, I only use Windows, Never came across MAC.
@harshidagrawal4646
@harshidagrawal4646 7 лет назад
Sir thanks for this video.. my query is now i want to collect this data in other controller at recieving side connected with static ip is it possible?
@RaviPujar
@RaviPujar 7 лет назад
Yes you can. Explain your setup and how everything is connected. Drop a email at ravi@valetron.com I will try to answer.
@harshidagrawal4646
@harshidagrawal4646 7 лет назад
I am Working on GPRS Wireess Communication from One station to Another Station. I want to send some bunch of data from Client GPRS Module and Recieve it on other side connected Server. In Your Tutorial You made your PC as a Server No, my Doubt is that may i Make Some Micro Controller based Server which can ehave as My Server instead of PC.
@abdelmouenlarfi7279
@abdelmouenlarfi7279 8 лет назад
hi happy thank you for your tutorial, I followed the same procedure that, but when I send AT + CIPSTART = "TCP", "", "747" the SIM900 return me ERROR, if you have an answer, do not hesitate
@garavsg8154
@garavsg8154 5 лет назад
NAT maybe..
@christerry1156
@christerry1156 3 года назад
Great video Ravi, thank you
@RaviPujar
@RaviPujar 3 года назад
Glad you liked it. Don't forget to like share and subscribe 😊
@pravin1074
@pravin1074 6 лет назад
hi, Nice tutorial.... I have M590E version 1.5 it's Support TCP over client mode or server mode. but i don't know how to test client mode.... please help me... Thank you.
@RaviPujar
@RaviPujar 6 лет назад
Hi, Thank you for watching. I havent worked on M590E. Please post your query here. www.embeddedadvice.com If someone has worked on it. They will reply. Dont forget to share and subscribe :)
@FahimulIslamBUET
@FahimulIslamBUET 8 лет назад
in my case AT+CIPSTART command shows: OK STATE: TCP CLOSED CONNECT FAIL please help
@RaviPujar
@RaviPujar 8 лет назад
+Fahimul Islam it means that the connection is closed on the server. Or you might be connecting to a ip which is not unique or which is shared between many computers like a LAN
@fahimkoi
@fahimkoi 8 лет назад
+Ravi Pujar can you please provide any solution? Any kind of solution would be big help. Thanx.
@indrajeetjaveri3
@indrajeetjaveri3 8 лет назад
when i put the last command it shows "STATE: TCP CLOSED CONNECT FAILED". Can you tell me whats wrong???IP Address is alloted to my sim already
@RaviPujar
@RaviPujar 8 лет назад
+Indrajeet Javeri May be your socket timed out. Depends on which server you are using. SocketTest server doesnt time out.
@indrajeetjaveri3
@indrajeetjaveri3 8 лет назад
+Ravi Pujar I used your HTTP tutorial to get HTTP Request from a webpage.I got that correctly.But this TCP Connect fails.Anyways since i only needed HTTP Requests that problem is solved.Thanks
@abirulezz
@abirulezz 8 лет назад
could you also make a video on esp8266 wifi module?
8 лет назад
Muchas gracias por compartir sus experiencia. Saludos desde El Salvador
@RaviPujar
@RaviPujar 8 лет назад
Greetings from India. You are welcome. :)
@shashankmishra3334
@shashankmishra3334 8 лет назад
hi,THANKS FOR AWESOME tutorial.But in my system AT+CIPSTART command respons as "State:tcp closed" CONNECT FAIL, earlier i was trying on common wifi but later i trried it with modem but problem remains same. it would be helpful of u help me out thanks
@RaviPujar
@RaviPujar 8 лет назад
+Shashank Mishra Hi , Before trying with SIM module first try to connect with socket test to your server, if it is able to connect then you can try connecting with the module.
@jstara83
@jstara83 7 лет назад
Hello , it was quite a useful video....But did any one faced AT+CIPSTART error , The command doesnt connect my sim 800 module to the server , Using socket test for connecting, but stuck......plz help
@RaviPujar
@RaviPujar 7 лет назад
Hi, If your CIICR command ran succesfully and got an IP address on CIFSR then you should not have this problem. Check these two commands again. Make sure to have balance on SIM card or a data pack.
@cenation319
@cenation319 9 лет назад
hi,THANKS FOR AWESOME tutorial.But what if after the CIPSTART command,getting respond as "State:tcp closed" CONNECT FAIL
@RaviPujar
@RaviPujar 9 лет назад
+Ghugan cena (cenation619) Hi, Thank you , It means that the socket is not open on the server side. Some servers have a time out , so when a socket is opened it automatically closes after few seconds if no any data is sent.
@Colors-of-world
@Colors-of-world 8 лет назад
+Ravi Pujar SIR i am having same problem.whatshould ido to tackle it
@shivanshkumar3764
@shivanshkumar3764 8 лет назад
Hi, I have SIM900a module and I am unable to connect to server like you do, my module wait for long time and then reply with error STATE: TCP CLOSED CONNECT FAIL. can you help me to connect my module to internet.
@RaviPujar
@RaviPujar 8 лет назад
There could be multiple reasons for that. First make sure you are connected to internet by checking the IP address and then also check if your server is not behind any firewall. And also you can use SocketTest as a client to test your server operation.
@CopperMasud
@CopperMasud 8 лет назад
yes im having the same problem and something is wrong with my public ip address (which i got from google) . 103.195.141.4 . without sim900 , i can't even connect socket test's client tab with server Tab with that ip. but google says that my ip . how to find that im behind any firewall or anything ...?? please please
@RaviPujar
@RaviPujar 8 лет назад
You can do port scan by an online tool here www.ipfingerprints.com/portscan.php And check if that particular port is open on given IP. If you are behind firewall the tool will not show that port as open. Its just a guess. You can give it a try.
@CopperMasud
@CopperMasud 8 лет назад
that tool sounds like not open at all but i did opened my port on socket test. after fiber_optic_cable there's a media converter and a router in my house > then my pc .. As im affected with their firewall , would you please teach mme how to usce TCP/IP in this situation ??? with pleasure
@RaviPujar
@RaviPujar 8 лет назад
I have no idea how to get past through that. Many of the routers come with port forwarding where you can forward packets coming to your router to a particular port to a particular IP address on LAN when multiple systems are sharing the same public IP address. Check you router administrator panel. There might be a option for port forwarding.
@dhamodharan702
@dhamodharan702 7 лет назад
how to get settings for gprs module..??
@sonhiya
@sonhiya 5 лет назад
i have a problem that it is opening but not showing the words, can you help me
@RaviPujar
@RaviPujar 5 лет назад
Which words its not showing? Dont forget to share and Subscribe :)
@MeghaSoni2994
@MeghaSoni2994 8 лет назад
I'm not able to download the TMFT software through the above link.
@RaviPujar
@RaviPujar 8 лет назад
The link is fine. Click on show more. and click on link. If you copy paste it then you will copy the truncated URL with dots at the end.
@MeghaSoni2994
@MeghaSoni2994 8 лет назад
Got it, thank you.
@lifeboy6969
@lifeboy6969 5 лет назад
Great video thank, you solved my problem, looking for the way to read/analyz tcp packet/protocl of my 2G Telit modem based Tracker device. Big thanks
@Z2typeR
@Z2typeR 4 года назад
Bro can I get in touch with you.
@markusmulholland
@markusmulholland 4 года назад
When i connect, I get Connect OK. Then after some seconds i get, "CLOSED". I never see the connection take place on the server either
@markusmulholland
@markusmulholland 4 года назад
So this happened because i was connecting to the network at my place of work and there were firewall settings that were blocking it. You need to turn the firewall off of the server running SocketTest
@chengtao
@chengtao 9 лет назад
thanks, it's very useful for me, i do it now and i think i know how to use the sim900 to internet
@syauqisabili3776
@syauqisabili3776 4 года назад
how to save the received data in csv file?
@tarneemqamran4187
@tarneemqamran4187 4 года назад
,the command’s no give ok Where’s the problem 😥??
@parasjatkar2552
@parasjatkar2552 6 лет назад
Great explanation Ravi. Thank you for sharing. :)
@RaviPujar
@RaviPujar 6 лет назад
Thank you Paras , Dont forget to share and subscribe :)
@chirayutwatcharinrat9923
@chirayutwatcharinrat9923 7 лет назад
How to connect to borad sim900? if arduino will use 5vt with 5vr connect to D2 with D3
@RaviPujar
@RaviPujar 7 лет назад
If you are connecting Arduino to SIM900 then you need to translate the voltage levels to 2.8V on SIM900 side using voltage level translator like TXS0102.
@chirayutwatcharinrat9923
@chirayutwatcharinrat9923 7 лет назад
AT+CIPSTART=“TYPE” , “domain”, “port” how to use port .I don't know it error. I use in program arduino serial moniter because take in car.
@pereformacio
@pereformacio 7 лет назад
Thanks for sharing your experience
@RaviPujar
@RaviPujar 7 лет назад
Pere Aranega Teruel Thank you for watching. Don't forget to subscribe :)
@MaheshPawaskar
@MaheshPawaskar 6 лет назад
Very useful information. Thanks Sir
@charlesgalvez133
@charlesgalvez133 7 лет назад
Can I use the IPV4 address to the sever?
@RaviPujar
@RaviPujar 7 лет назад
yes you can use, In this video all address used are IPV4. Dont forget to subscribe :)
@rahulbiswash8238
@rahulbiswash8238 9 лет назад
thank you very usefull for me god bless you ravi
@manoja1226
@manoja1226 6 лет назад
outstanding video. it`s very important to me.
@RaviPujar
@RaviPujar 6 лет назад
Hi, Thanks for watching :) Dont forget to share and subscribe :)
@gautamahuja7469
@gautamahuja7469 5 лет назад
Awesome work man..I really appreciate it. Thank you
@RaviPujar
@RaviPujar 5 лет назад
Thanks for watching. Don't forget to share and subscribe :)
@gautamahuja7469
@gautamahuja7469 5 лет назад
@@RaviPujar Sure Man. Can we create a server on sim808 by not using sim900 or it's just the problem with network providers?
@RaviPujar
@RaviPujar 5 лет назад
@@gautamahuja7469 You can't use it as server without private network and static ip.
@CaesarMIX
@CaesarMIX 9 лет назад
Great! Thank you very much!!
@akshaykonde6871
@akshaykonde6871 7 лет назад
Hi sir I am using SIM808 modem everything works fine but when i give AT+CIPSTART=”TCP”,”www.google.com”,”80” command it gives error i have tried using vodafone and aircel sim .Please someone help me
@RaviPujar
@RaviPujar 7 лет назад
Make sure you are connected to network and IP address is correctly allocated before trying that command.
@akshaykonde6871
@akshaykonde6871 7 лет назад
yes IP is allocated to network can i get your email address so that i can mail you snapshots of it
@RaviPujar
@RaviPujar 7 лет назад
ravi@valetron.com
@akshaykonde6871
@akshaykonde6871 7 лет назад
thank you sir but issue is solved just now the problem is withe google.com I tried some ip from m2m support and worked
@akshaykonde6871
@akshaykonde6871 7 лет назад
Tysm for your quick replies
@RakeshKumar-tt7qt
@RakeshKumar-tt7qt 7 лет назад
please sir give me a udp test like this. i am unable to do that .
@RaviPujar
@RaviPujar 7 лет назад
Yes Rakesh, I will try.
@sarojflame
@sarojflame 5 лет назад
my TCP connection close automatically after 60 seconds of connection.can anyone please reply how to stop it closing automatically?
@RaviPujar
@RaviPujar 5 лет назад
Most of the time its the server that closes it due to preset timeout on inactivity. GSM modules themselves dont close it unless there is a network problem. Thanks for watching and Dont forget to share and Subscribe :)
@sarojflame
@sarojflame 5 лет назад
thank you so much
@cristiancortez8487
@cristiancortez8487 5 лет назад
tanks ! very god
@helloblog7615
@helloblog7615 2 года назад
IP calling system ??sip server
@nilkanthmugatkar6087
@nilkanthmugatkar6087 5 лет назад
Sockettest software shows incorrect client id.
@RaviPujar
@RaviPujar 5 лет назад
I guess it's internal ID generated by itself, don't depend on it. Don't forget to share and subscribe :)
@nilkanthmugatkar6087
@nilkanthmugatkar6087 5 лет назад
thank you
@mrscross8948
@mrscross8948 7 лет назад
Thank you a lot.
@RaviPujar
@RaviPujar 7 лет назад
Welcome :)
@blahman442
@blahman442 3 года назад
Need secure tcp/ip.
@duckhoa
@duckhoa 7 лет назад
good :) thanks
@RaviPujar
@RaviPujar 7 лет назад
Tran Duc Khoa Thank you for watching. Don't forget to subscribe :)
@manoja1226
@manoja1226 6 лет назад
Thanks
@RaviPujar
@RaviPujar 9 лет назад
@vahidnariman35
@vahidnariman35 7 лет назад
Hi, when i use AT+CIPSTART... my module shuting down! can help me to find what happend? (vbat=3.84-3.89v 2A with ts2976, net lines 80mil exacly same as sim800's datasheet's (v1.2) power supply chematic)
@pedajas
@pedajas 4 года назад
:-D going to google.com if you have google bar right in front of you .. priceless :-D
@RaviPujar
@RaviPujar 4 года назад
Ha ha, Good observation 😀
@eduardoramon7232
@eduardoramon7232 6 лет назад
Hola Ravi, buenas tardes. Cuando ejecutó el comando CIPSTART el sim 900 envía error de Conexión porque el servidor remoto corto la conexión. Podrías indicarme que modificaciones realizaste al Windows.Correo: ramongomez_ce@hotmail.com Saludos
@RaviPujar
@RaviPujar 6 лет назад
If you have technical questions, you can ask here, www.embeddedadvice.com Please ask in english so that i can answer correctly. Dont forget to share and subscribe :)
@ucanghuyen8610
@ucanghuyen8610 6 лет назад
How to stream data in that uart program to a file automatically?
@RaviPujar
@RaviPujar 6 лет назад
In TMFT there is option to capture data. You can save data coming to terminal to a file. Don't forget to Share and Subscribe :)
Далее
SIM900 AT Commands
11:54
Просмотров 96 тыс.
SIM900 GPRS HTTP AT Commands
14:03
Просмотров 61 тыс.
Using SIM900 as TCP Server - Watch this first
9:35
Просмотров 19 тыс.
Introduction to AT Commands
39:03
Просмотров 20 тыс.
Conexion TCP IP por GPRS SIM800
14:31
Просмотров 12 тыс.
SIM900 GPRS FTP AT Commands
9:37
Просмотров 14 тыс.