Pin Connections Table 1
Board Sensor Pin Connection SIM800L V2 VCC/GND/TX/RX 5V / GND / board RX pin / board TX pin
SIM800L V2.0 5V Wireless GSM GPRS MODULE - Arduino Uno
SIM800L V2.0 5V Wireless GSM GPRS MODULE - Arduino Nano
SIM800L V2.0 5V Wireless GSM GPRS MODULE - Arduino Mega
SIM800L V2.0 5V Wireless GSM GPRS MODULE - ESP32
SIM800L V2.0 5V Wireless GSM GPRS MODULE - ESP8266
SIM800L V2.0 5V Wireless GSM GPRS MODULE - STM32
SIM800L V2.0 5V Wireless GSM GPRS MODULE - Raspberry Pi Pico
1 //ekostra.com
2 //electronics store in egypt
3 //+201008896258
4
5 // RX=2 , TX=3 on Arduino Uno. Needs its own separate 4 -4. 2V supply capable of ~2A peaks - a board's 5V/3. 3V pin can't power it.
6 #include <SoftwareSerial.h>
7 SoftwareSerial LINK_SERIAL(2 , 3 );
8
9 void setup () {
10 Serial.begin (115200 );
11 LINK_SERIAL.begin(9600 );
12 delay (3000 ); // let the module finish booting
13 LINK_SERIAL.println("AT"); // basic "are you there" check
14 LINK_SERIAL.println("AT+CSQ"); // signal quality
15 }
16
17 void loop () {
18 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
19 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // type AT commands directly in the Serial Monitor
20 }
1 //ekostra.com
2 //electronics store in egypt
3 //+201008896258
4
5 // RX=2 , TX=3 on Arduino Nano. Needs its own separate 4 -4. 2V supply capable of ~2A peaks - a board's 5V/3. 3V pin can't power it.
6 #include <SoftwareSerial.h>
7 SoftwareSerial LINK_SERIAL(2 , 3 );
8
9 void setup () {
10 Serial.begin (115200 );
11 LINK_SERIAL.begin(9600 );
12 delay (3000 ); // let the module finish booting
13 LINK_SERIAL.println("AT"); // basic "are you there" check
14 LINK_SERIAL.println("AT+CSQ"); // signal quality
15 }
16
17 void loop () {
18 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
19 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // type AT commands directly in the Serial Monitor
20 }
1 //ekostra.com
2 //electronics store in egypt
3 //+201008896258
4
5 // RX=19 , TX=18 on Arduino Mega. Needs its own separate 4 -4. 2V supply capable of ~2A peaks - a board's 5V/3. 3V pin can't power it.
6 #define LINK_SERIAL Serial1
7
8 void setup () {
9 Serial.begin (115200 );
10 LINK_SERIAL.begin(9600 );
11 delay (3000 ); // let the module finish booting
12 LINK_SERIAL.println("AT"); // basic "are you there" check
13 LINK_SERIAL.println("AT+CSQ"); // signal quality
14 }
15
16 void loop () {
17 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
18 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // type AT commands directly in the Serial Monitor
19 }
1 //ekostra.com
2 //electronics store in egypt
3 //+201008896258
4
5 // RX=16 , TX=17 on ESP32. Needs its own separate 4 -4. 2V supply capable of ~2A peaks - a board's 5V/3. 3V pin can't power it.
6 #define LINK_SERIAL Serial1
7
8 void setup () {
9 Serial.begin (115200 );
10 LINK_SERIAL.begin(9600 );
11 delay (3000 ); // let the module finish booting
12 LINK_SERIAL.println("AT"); // basic "are you there" check
13 LINK_SERIAL.println("AT+CSQ"); // signal quality
14 }
15
16 void loop () {
17 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
18 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // type AT commands directly in the Serial Monitor
19 }
1 //ekostra.com
2 //electronics store in egypt
3 //+201008896258
4
5 // RX=D7, TX=D8 on ESP8266. Needs its own separate 4 -4. 2V supply capable of ~2A peaks - a board's 5V/3. 3V pin can't power it.
6 #include <SoftwareSerial.h>
7 SoftwareSerial LINK_SERIAL(D7, D8);
8
9 void setup () {
10 Serial.begin (115200 );
11 LINK_SERIAL.begin(9600 );
12 delay (3000 ); // let the module finish booting
13 LINK_SERIAL.println("AT"); // basic "are you there" check
14 LINK_SERIAL.println("AT+CSQ"); // signal quality
15 }
16
17 void loop () {
18 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
19 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // type AT commands directly in the Serial Monitor
20 }
1 //ekostra.com
2 //electronics store in egypt
3 //+201008896258
4
5 // RX=PA10, TX=PA9 on STM32. Needs its own separate 4 -4. 2V supply capable of ~2A peaks - a board's 5V/3. 3V pin can't power it.
6 #define LINK_SERIAL Serial1
7
8 void setup () {
9 Serial.begin (115200 );
10 LINK_SERIAL.begin(9600 );
11 delay (3000 ); // let the module finish booting
12 LINK_SERIAL.println("AT"); // basic "are you there" check
13 LINK_SERIAL.println("AT+CSQ"); // signal quality
14 }
15
16 void loop () {
17 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
18 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // type AT commands directly in the Serial Monitor
19 }
1 //ekostra.com
2 //electronics store in egypt
3 //+201008896258
4
5 // RX=1 , TX=0 on Raspberry Pi Pico. Needs its own separate 4 -4. 2V supply capable of ~2A peaks - a board's 5V/3. 3V pin can't power it.
6 #define LINK_SERIAL Serial1
7
8 void setup () {
9 Serial.begin (115200 );
10 LINK_SERIAL.begin(9600 );
11 delay (3000 ); // let the module finish booting
12 LINK_SERIAL.println("AT"); // basic "are you there" check
13 LINK_SERIAL.println("AT+CSQ"); // signal quality
14 }
15
16 void loop () {
17 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
18 if (Serial.available()) LINK_SERIAL.write(Serial.read()); // type AT commands directly in the Serial Monitor
19 }
Project Notes: UART GSM/GPRS modem with an onboard regulator (accepts 5V directly).
نظرة عامة ومواصفات المنتج — بالعربية SIM800L V2.0 5V Wireless GSM GPRS MODULE متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم GSM / GPRS Modules وIoT and Wireless، بسعر 350,00 EGP. كود المنتج لدينا: EK510. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.
أهم المواصفات الفنية:
Product Name: SIM800L V2.0 5V Wireless GSM/GPRS ModuleCategory: Module → GSM / Cellular ModuleModule Type: GSM / GPRSالشريحة: SIM800LNetwork Bands: Quad-Band 850/900/1800/1900 MHzSupply Voltage: 5 V (module input)Logic Level: TTL UART (typically 2.8V on SIM800L core, module-dependent)واجهة الاتصال: UART (AT Commands)هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.
تصفّح المزيد من GSM / GPRS Modules في إكوسترا.