دوستان سلام
من مشکلم با این ماژول دریافت و نمایش اس ام اس هستش یعنی با این کد میتونم اس ام اس انگلیسی ارسال کنم ولی برای دریافت هیچ #include <SoftwareSerial.h>

#include <SoftwareSerial.h>

//SIM800 TX is connected to Arduino D8
#define SIM800_TX_PIN 8

//SIM800 RX is connected to Arduino D7
#define SIM800_RX_PIN 7

//Create software serial object to communicate with SIM800
SoftwareSerial serialSIM800(SIM800_TX_PIN,SIM800_RX_PIN);


void SMSR(){


}

void setup() {
//Begin serial comunication with Arduino and Arduino IDE (Serial Monitor)
Serial.begin(9600);
while(!Serial);

//Being serial communication witj Arduino and SIM800
serialSIM800.begin(9600);
delay(1000);

Serial.println("Setup Complete!");
Serial.println("Sending SMS...");

//Set SMS format to ASCII
serialSIM800.write("AT+CMGF=1\r\n");
delay(1000);

//Send new SMS command and message number
serialSIM800.write("AT+CMGS=\"+989362280159\"\r\n" );
delay(1000);

//Send SMS content
serialSIM800.write("TEST");
delay(1000);

//Send Ctrl+Z / ESC to denote SMS message is complete
serialSIM800.write((char)26);
delay(1000);

Serial.println("SMS Sent!");
delay(100);
Serial.println(serialSIM800.print("AT+CMGR=2,2,0,0 ,0\r"));
}

void loop() {}
راهی به نظرتون میرسه؟