

The SIM7600 is a 4G LTE module front manufactured by SimCom Wireless Solutions. It is a high-performance communication device designed to enable wireless data transmission over 4G LTE networks. This module provides high-speed internet connectivity and supports a wide range of applications, including IoT devices, mobile computing, remote monitoring, and industrial automation.
With its compact design and robust features, the SIM7600 is ideal for applications requiring reliable and efficient wireless communication. It supports multiple network standards, including 4G LTE, 3G, and 2G, ensuring compatibility with various network infrastructures.








| Parameter | Specification |
|---|---|
| Manufacturer | SimCom Wireless Solutions |
| Part Number | SIM7600 |
| Network Standards | 4G LTE, 3G, 2G |
| LTE Bands | LTE-FDD: B1/B2/B3/B4/B5/B7/B8/B12/B13/B18/B19/B20/B25/B26/B28/B66 |
| Data Rates | LTE Cat-4: Uplink up to 50 Mbps, Downlink up to 150 Mbps |
| Operating Voltage | 3.4V to 4.2V (Typical: 3.8V) |
| Power Consumption | Idle: ~20mA, Active: ~500mA (varies with network conditions) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 30mm x 30mm x 2.9mm |
| Interfaces | UART, USB 2.0, GPIO, I2C, SPI, ADC, PCM, SIM card interface |
| SIM Card Support | 1.8V/3.0V SIM cards |
| GNSS Support | GPS, GLONASS, BeiDou, Galileo, QZSS |
| Certifications | CE, FCC, RoHS, PTCRB, GCF |
The SIM7600 module has multiple pins for communication and power. Below is a summary of the key pins:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (3.4V to 4.2V, typical 3.8V) |
| 2 | GND | Ground connection |
| 3 | TXD | UART Transmit Data |
| 4 | RXD | UART Receive Data |
| 5 | USB_D+ | USB 2.0 Data Positive |
| 6 | USB_D- | USB 2.0 Data Negative |
| 7 | SIM_VDD | SIM card power supply |
| 8 | SIM_DATA | SIM card data line |
| 9 | SIM_CLK | SIM card clock |
| 10 | SIM_RST | SIM card reset |
| 11 | GNSS_TXD | GNSS UART Transmit Data |
| 12 | GNSS_RXD | GNSS UART Receive Data |
| 13 | GPIO1 | General-purpose input/output |
| 14 | GPIO2 | General-purpose input/output |
| 15 | ADC | Analog-to-digital converter input |
| 16 | RESET | Reset pin (active low) |
Below is an example of how to connect the SIM7600 module to an Arduino UNO and send an HTTP GET request.
| SIM7600 Pin | Arduino Pin |
|---|---|
| TXD | RX (Pin 0) |
| RXD | TX (Pin 1) |
| VCC | 5V |
| GND | GND |
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial sim7600(10, 11); // RX = Pin 10, TX = Pin 11
void setup() {
Serial.begin(9600); // Initialize Serial Monitor
sim7600.begin(9600); // Initialize SIM7600 communication
Serial.println("Initializing SIM7600...");
delay(1000);
// Send AT command to check communication
sim7600.println("AT");
delay(1000);
while (sim7600.available()) {
Serial.write(sim7600.read()); // Print response to Serial Monitor
}
// Configure APN for your network provider
sim7600.println("AT+CGDCONT=1,\"IP\",\"your_apn_here\"");
delay(1000);
// Start HTTP GET request
sim7600.println("AT+HTTPINIT");
delay(1000);
sim7600.println("AT+HTTPPARA=\"URL\",\"http://example.com\"");
delay(1000);
sim7600.println("AT+HTTPACTION=0"); // 0 = GET request
delay(5000);
// Read HTTP response
sim7600.println("AT+HTTPREAD");
delay(1000);
while (sim7600.available()) {
Serial.write(sim7600.read());
}
sim7600.println("AT+HTTPTERM"); // Terminate HTTP session
}
void loop() {
// No actions in loop
}
Module Not Responding to AT Commands
No Network Connection
High Power Consumption
Weak Signal Strength
Q: Can the SIM7600 work with 3G or 2G networks?
A: Yes, the SIM7600 is backward compatible with 3G and 2G networks.
Q: Does the module support voice calls?
A: Yes, the SIM7600 supports voice calls via AT commands.
Q: How do I update the firmware?
A: Firmware updates can be performed via the USB interface using SimCom's official tools.
Q: Can I use the SIM7600 for GPS tracking?
A: Yes, the module includes GNSS functionality for GPS, GLONASS, BeiDou, Galileo, and QZSS.
This concludes the documentation for the SIM7600 4G LTE Module Front. For further assistance, refer to the official SimCom user manual or contact technical support.