Pin Connections Table 1
Board Sensor Pin Connection Antenna IPEX connector plugs into the GSM module's antenna connector
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
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: 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الخامة: PCBConnector Type: ipx13Impedance Definition: 50 ohmOperating Temperature C: 30 to ~ + 85°CImpedance %Cf%89: 50 Ohmالوزن: 8 gهذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.
تصفّح المزيد من GSM / GPRS Modules في إكوسترا.