

The 4G SIM7600G-H Module is a high-performance LTE communication module designed for high-speed mobile data transmission. Manufactured by SIMCom, this module supports 4G LTE, 3G, and 2G networks, making it a versatile solution for a wide range of applications. It is particularly well-suited for Internet of Things (IoT) applications, such as smart metering, remote monitoring, vehicle tracking, and industrial automation. The module also supports various communication protocols, including TCP/IP, HTTP, FTP, and MQTT, enabling seamless integration into modern IoT ecosystems.
With its compact design, low power consumption, and robust connectivity features, the SIM7600G-H module is an excellent choice for developers and engineers looking to implement reliable wireless communication in their projects.








The following table outlines the key technical specifications of the 4G SIM7600G-H Module:
| Parameter | Specification |
|---|---|
| Manufacturer | SIMCom |
| Part ID | SIM7600G-H |
| Network Support | 4G LTE, 3G (WCDMA), 2G (GSM/GPRS/EDGE) |
| Frequency Bands | LTE: B1/B2/B3/B4/B5/B7/B8/B12/B13/B18/B19/B20/B25/B26/B28/B38/B39/B40/B41 |
| WCDMA: B1/B2/B4/B5/B6/B8/B19 | |
| GSM: 850/900/1800/1900 MHz | |
| Data Rates | LTE: Up to 150 Mbps (DL) / 50 Mbps (UL) |
| WCDMA: Up to 42 Mbps (DL) / 5.76 Mbps (UL) | |
| GSM: Up to 85.6 kbps (DL) / 42.8 kbps (UL) | |
| Operating Voltage | 3.4V to 4.2V (Typical: 3.8V) |
| Power Consumption | Idle: ~1.5 mA, Active: ~500 mA (varies with network conditions) |
| Operating Temperature | -40°C to +85°C |
| Interface | UART, USB 2.0, GPIO, I2C, ADC, PCM, SIM Card Interface |
| SIM Card Support | 1.8V/3.0V SIM cards |
| Dimensions | 30 mm x 30 mm x 2.9 mm |
| Certifications | CE, FCC, RoHS, PTCRB, GCF |
The SIM7600G-H module has multiple pins for interfacing with external devices. Below is a summary of the key pins and their functions:
| Pin Name | Type | Description |
|---|---|---|
| VCC | Power Input | Main power supply input (3.4V to 4.2V, typical 3.8V). |
| GND | Ground | Ground connection. |
| TXD | UART Output | Transmit data (UART interface). |
| RXD | UART Input | Receive data (UART interface). |
| USB_D+ | USB Data Line | USB differential data line (positive). |
| USB_D- | USB Data Line | USB differential data line (negative). |
| SIM_VDD | Power Output | Power supply for the SIM card (1.8V/3.0V). |
| SIM_DATA | I/O | SIM card data line. |
| SIM_CLK | Output | SIM card clock signal. |
| SIM_RST | Output | SIM card reset signal. |
| GPIO1 | GPIO | General-purpose input/output pin. |
| ADC | Analog Input | Analog-to-digital converter input. |
| NET_STATUS | Output | Indicates network status (e.g., registered, searching). |
| PWRKEY | Input | Power-on key. Active low. |
| RESET | Input | Reset pin. Active low. |
To use the SIM7600G-H module with an Arduino UNO, follow these steps:
TXD pin to the Arduino's RX pin and the module's RXD pin to the Arduino's TX pin. Use a logic level shifter if necessary to match voltage levels.PWRKEY pin low for at least 1 second to power on the module.The following example demonstrates how to send an SMS using the SIM7600G-H module:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial sim7600(7, 8); // RX = Pin 7, TX = Pin 8
void setup() {
Serial.begin(9600); // Initialize Serial Monitor
sim7600.begin(9600); // Initialize SIM7600 UART communication
Serial.println("Initializing SIM7600G-H Module...");
delay(1000);
// Send AT command to check module status
sim7600.println("AT");
delay(1000);
while (sim7600.available()) {
Serial.write(sim7600.read()); // Print module response to Serial Monitor
}
// Set SMS text mode
sim7600.println("AT+CMGF=1"); // Set SMS mode to text
delay(1000);
// Send SMS
sim7600.println("AT+CMGS=\"+1234567890\""); // Replace with recipient's phone number
delay(1000);
sim7600.println("Hello from SIM7600G-H!"); // SMS content
delay(1000);
sim7600.write(26); // Send Ctrl+Z to indicate end of message
delay(5000);
Serial.println("SMS sent!");
}
void loop() {
// No actions in loop
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Module does not power on | Insufficient power supply | Ensure the power supply provides 3.8V with sufficient current (at least 2A). |
| No response to AT commands | Incorrect UART connection | Verify TX and RX connections. Check baud rate settings. |
| Poor signal reception | Antenna not connected or obstructed | Ensure the antenna is securely connected and placed in an open area. |
| SIM card not detected | SIM card improperly inserted | Reinsert the SIM card and ensure proper orientation. |
| SMS not sent | Incorrect AT command or phone number | Verify the AT command syntax and recipient's phone number. |
Can the SIM7600G-H module be used for voice calls?
What is the maximum data rate supported by the module?
Does the module support GPS?
Can I use the module with a 5V microcontroller?
This documentation provides a comprehensive guide to using the 4G SIM7600G-H Module. For further assistance, refer to the official SIMCom datasheet or contact technical support.