SIM800L V2.0 5V Wireless GSM GPRS MODULE

  • 📶 SIM800L V2.0 GSM/GPRS module for cellular connectivity
  • 📱 Supports calls, SMS, and GPRS data (2G network)
  • ⚡ 5V module input (onboard regulation depending on version)
  • 🔌 UART serial control using AT commands
  • 🧩 Ideal for IoT tracking, remote control, and SMS alerts
  • 📡 Works with microcontrollers like Arduino/ESP32 (UART)
  • 📦 Compact module—easy to integrate into projects
  • ✅ Great for GSM-based communication and monitoring systems

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

350,00 EGP

11 People watching this product now!

Payment Methods:

Description

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
SIM800L V2VCC/GND/TX/RX5V / GND / board RX pin / board TX pin
📟
SIM800L V2.0 5V Wireless GSM GPRS MODULE
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
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
📄 File: sim800l_v2.0_5v_wireless_gsm_gprs_module_-_arduino_uno.inoArduino Uno
686 characters
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>
7SoftwareSerial LINK_SERIAL(2, 3);
8
9void 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
17void 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}
📄 File: sim800l_v2.0_5v_wireless_gsm_gprs_module_-_arduino_nano.inoArduino Nano
687 characters
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>
7SoftwareSerial LINK_SERIAL(2, 3);
8
9void 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
17void 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}
📄 File: sim800l_v2.0_5v_wireless_gsm_gprs_module_-_arduino_mega.inoArduino Mega
655 characters
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
8void 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
16void 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}
📄 File: sim800l_v2.0_5v_wireless_gsm_gprs_module_-_esp32.inoESP32
648 characters
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
8void 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
16void 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}
📄 File: sim800l_v2.0_5v_wireless_gsm_gprs_module_-_esp8266.inoESP8266
686 characters
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>
7SoftwareSerial LINK_SERIAL(D7, D8);
8
9void 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
17void 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}
📄 File: sim800l_v2.0_5v_wireless_gsm_gprs_module_-_stm32.inoSTM32
651 characters
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
8void 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
16void 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}
📄 File: sim800l_v2.0_5v_wireless_gsm_gprs_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
658 characters
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
8void 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
16void 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}
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 Module
  • Category: Module → GSM / Cellular Module
  • Module Type: GSM / GPRS
  • الشريحة: SIM800L
  • Network Bands: Quad-Band 850/900/1800/1900 MHz
  • Supply 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 في إكوسترا.

Specification

Specification

WeightWeight8 g
Dimensions3 × 2 × 1 cm
Product NameSIM800L V2.0 5V Wireless GSM/GPRS Module
CategoryModule → GSM / Cellular Module
Module TypeGSM / GPRS
ChipsetSIM800L
Network BandsQuad-Band 850/900/1800/1900 MHz
Supply Voltage5 V (module input)
Logic LevelTTL UART (typically 2.8V on SIM800L core, module-dependent)
InterfaceUART (AT Commands)
SIM CardMicro SIM / SIM (variant-dependent)
AntennaExternal antenna supported (typical)
FunctionsCalls, SMS, GPRS data
ApplicationsIoT cellular projects, SMS alert systems, remote monitoring, trackers

Customer Reviews