Hi Sir, Firstly thank you so much for the videos. You explain it so clear and it is much easier to process it.
@saullunaminor25613 жыл бұрын
Thank you, I'm Mexican and your video was very helpful
@NizarMohideen3 жыл бұрын
You're very welcome!
@yusufhzal37803 жыл бұрын
It is a great video please make a video about mqtt with stm32
@NizarMohideen3 жыл бұрын
Thanks. mqtt is in the queue
@yusufhzal37803 жыл бұрын
If i get sim800L module may i do same project?
@NizarMohideen3 жыл бұрын
Yes. It will work with SIM800L if you have 2G in your country. You can use the same code.. VCC voltage supply is 4.2V
@leetupload3 жыл бұрын
Hi Nizar, great videos. Question for you. Since you seem to be active on here and use a SIM7600 module, I was curious if you've ever experimented with the A-GPS feature. The reason why I ask is that I can't find anywhere, anyone having success with the UE-assisted mode with this device. It is allegedly supported in the manual with AT+CGPS=1,3, but I get a response of CGPS: 0. I was curious, if you wouldn't mind letting me know if it works for you? Would help me out greatly. Thanks in advance!
@NizarMohideen3 жыл бұрын
Try one after another both commands below AT+CGPS=1 AT+CGPSINFO You will get the coordinates
@gokulkrish72562 жыл бұрын
I would like to ask that how to send multiple sensor data to HTTP and how to generate php files for them with the code you provided as base, as well is there any other site works similar to awardspace which works with the same set of php files that you have provided for recieving the http post.
@shrijithmjain21373 жыл бұрын
Amazing
@NizarMohideen3 жыл бұрын
Thank you! Cheers!
@ekwunifechris98807 ай бұрын
Why do you have to "Connection: close" at the middle of transmittion??
@NizarMohideen7 ай бұрын
I used older version of http. that is 1.1 It has "Connection: keep-alive" and "Connection: close" I did not want to keep it alive "Connection: close" does not mean that it closes in the middle of transmission, it means to close after the completion of transmission For more details see -- en.wikipedia.org/wiki/HTTP_persistent_connection
@ekwunifechris98807 ай бұрын
@@NizarMohideen Thanks, so can the module do http2.0?
@cesarcassiolato96722 ай бұрын
Hello, I am not getting sucess on the follow command. I am getting ciperror: 4 sprintf(ATcommand,"AT+CIPSEND=0,%d ",strlen(content)); SIMTransmit(ATcommand); if(strstr((char *)buffer,">")) { SIMTransmit(content); } Do you have any tip on solve it? Thanks a lot.
@cesarcassiolato967225 күн бұрын
Please, any tip?
@kolhatkarchinmay2 жыл бұрын
Sir do you have any Idea how to select APN automatically? Like if we are not sure which sim card customer will put inside sim module
@NizarMohideen2 жыл бұрын
Option 1: You can query AT+COPS? to get the registered provider and then set the APN accordingly by coding on the fly. Option 2: Latest telecommunication/isp providers do it automatically. One day I used vodafone APN to a another network SIM card, it worked. If all networks use auto apn settings in the users country, you can put some random characters for apn
@kolhatkarchinmay2 жыл бұрын
@@NizarMohideen thanks for quick reply. Keep Uploading great video. Support++
@NguyenDuong-lr9uk Жыл бұрын
Hello sir! I have a project that is sending gps data from sim7600 module using stm32 microcontroller to web using http protocol. Can you help me code, i really need your help. Thanks you.
@dnyaneshvarsalve29842 жыл бұрын
great work.Thanks
@NizarMohideen2 жыл бұрын
Thank you too!
@KhayriHamdi-g3b Жыл бұрын
hi Nizar this code works wiith sim800/900
@NizarMohideen Жыл бұрын
Yes it does
@KhayriHamdi-g3b Жыл бұрын
@@NizarMohideen Thank you
@dinhle84523 жыл бұрын
can you do send message from STM32 to phone and from phone send message to STM32 then transmit to virtual com port
@dinhle84523 жыл бұрын
Thanks you
@NizarMohideen3 жыл бұрын
STM32 TO phone kzbin.info/www/bejne/oX2xd6Oqq856ndU Phone to STM32 kzbin.info/www/bejne/fGrHZaePaamCitE
@dinhle84523 жыл бұрын
@@NizarMohideen Can I connect the 2 parts of the code together, sending and receiving at the same time?
@NizarMohideen3 жыл бұрын
Yes, Use HAL_UART_Receive_IT for receiving Use HAL_UART_Receive to check transmit acknowledgment. If you don't need transmit acknowledgment, it is very simple. Just send SMS in while(1) loop when ever need.
@dinhle84523 жыл бұрын
@@NizarMohideen Can you connect the 2 parts together?