I'm trying to connect my SIM800L module to an arduino nano copy named Elegoo nano CH340.
I have been trying to use a series of codes to test the functionality of the module mainly for sending a message, sending an email and making a HTTP request but so far i didn't' get any luck.
The SIM800L module works perfectly, i tried it with the Arduino uno with the same codes and it works just fine.
The Elegoo nano board is giving me error with almost all of the codes, the connection is very simple and it should work (5V->VCC, GND->GND, RX->D2, TX->D3). I have tried with all the baud rates and it is not working
Below are samples of the codes i'm using:
Sending SMS:
AT
AT+CMGF
AT+CMGS="677749798"
Hello!!
\x1A
Sending email:
AT+SAPBR=3,1,"CONTYPE","GPRS"
AT+SAPBR=3,1,"APN",""
AT+SAPBR=3,1,"USER",""
AT+SAPBR=3,1,"PWD",""
AT+SAPBR=1,1
AT+SAPBR=2,1
AT+EMAILCID=1
AT+EMAILTO=30
AT+EMAILSSL=1
AT+SMTPSRV="smtp.gmail.com",465
AT+SMTPAUTH=1,"",""
AT+SMTPFROM="",""
AT+SMTPRCPT=0,0,"",""
AT+SMTPSUB="test"
AT+SMTPBODY=4
hello
AT+SMTPSEND
Making HTTP request:
AT+SAPBR=3,1,"CONTYPE","GPRS"
AT+SAPBR=3,1,"APN",""
AT+SAPBR=3,1,"USER",""
AT+SAPBR=3,1,"PWD",""
AT+SAPBR=1,1
AT+SAPBR=2,1
AT+HTTPINIT
AT+HTTPPARA="CID",1
AT+HTTPPARA="URL",""
AT+HTTPACTION=0
AT+HTTPREAD
AT+HTTPTERM
AT+SAPBR=0,1
Please can you refer me to any mistake that i'm doing, if this elegoo nano can not handle the work with the SIM800L module or the codes should be different or anything else. Thank you in advance