GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520)

  1. Name: 2G 3G IPEX antenna
  2. Connector type: ipx13
  3. Gain definition: 3dBi (Typical)
  4. Frequency band definition: 17102170MHz 800960
  5. Impedance definition: 50 ohm
  6. Total length: as shown in Figure
  7. Impedance 50 Ohm

Apple Shopping Event

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

40,00 EGP

18 People watching this product now!

Payment Methods:

Description

 
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
AntennaIPEX connectorplugs into the GSM module's antenna connector
📟
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520)
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) - Arduino Uno
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) - Arduino Nano
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) - Arduino Mega
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) - ESP32
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) - ESP8266
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) - STM32
GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) - Raspberry Pi Pico
📄 File: gsm/gprs/3g_pcb_antenna_with_ipex_connector_(15cm,_3dbi)_for_sim800/sim908/sim900_(1520)_-_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: gsm/gprs/3g_pcb_antenna_with_ipex_connector_(15cm,_3dbi)_for_sim800/sim908/sim900_(1520)_-_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: gsm/gprs/3g_pcb_antenna_with_ipex_connector_(15cm,_3dbi)_for_sim800/sim908/sim900_(1520)_-_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: gsm/gprs/3g_pcb_antenna_with_ipex_connector_(15cm,_3dbi)_for_sim800/sim908/sim900_(1520)_-_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: gsm/gprs/3g_pcb_antenna_with_ipex_connector_(15cm,_3dbi)_for_sim800/sim908/sim900_(1520)_-_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: gsm/gprs/3g_pcb_antenna_with_ipex_connector_(15cm,_3dbi)_for_sim800/sim908/sim900_(1520)_-_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: gsm/gprs/3g_pcb_antenna_with_ipex_connector_(15cm,_3dbi)_for_sim800/sim908/sim900_(1520)_-_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}
Passive antenna accessory for a SIM800-family module - no code of its own; it just improves the signal of whichever GSM module it's plugged into.

نظرة عامة ومواصفات المنتج — بالعربية

GSM/GPRS/3G PCB Antenna with IPEX Connector (15cm, 3dBi) for SIM800/Sim908/Sim900 (1520) متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم GSM / GPRS Modules وIoT and Wireless، بسعر 40,00 EGP. كود المنتج لدينا: EK1562. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • Item Type: PCB Antenna
  • الخامة: PCB
  • Connector Type: ipx13
  • Impedance Definition: 50 ohm
  • Operating Temperature C: 30 to ~ + 85°C
  • Impedance %Cf%89: 50 Ohm
  • الوزن: 8 g

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من GSM / GPRS Modules في إكوسترا.

Specification

Specification

WeightWeight8 g
Dimensions3 × 2 × 1 cm
item-typePCB Antenna
materialPCB
connector-typeipx13
impedance-definition50 ohm
operating-temperature-c30 to ~ + 85°C
impedance-%cf%8950 Ohm

Customer Reviews