The SIM 7020c is a low-power cellular module manufactured by SIMCom Wireless Solutions (Part ID: S2-107GX-Z2017). It is specifically designed for IoT (Internet of Things) applications, supporting LTE-M and NB-IoT connectivity. This module is ideal for applications requiring low power consumption, reliable connectivity, and compact design.
With its built-in GPS positioning capabilities and multiple interfaces, the SIM 7020c is highly versatile and can be easily integrated into various embedded systems. It is widely used in smart metering, asset tracking, industrial automation, and environmental monitoring.
Parameter | Specification |
---|---|
Cellular Technology | LTE-M (Cat-M1), NB-IoT (Cat-NB1) |
Frequency Bands | LTE B1/B2/B3/B4/B5/B8/B12/B13/B18/B19/B20/B25/B28/B66/B85 |
Data Rate | LTE-M: Uplink 375 kbps, Downlink 300 kbps NB-IoT: Uplink 66 kbps, Downlink 26 kbps |
Power Supply Voltage | 3.1V to 4.2V (Typical: 3.8V) |
Power Consumption | Idle: ~3.2mA Active: ~15mA (LTE-M), ~10mA (NB-IoT) |
Operating Temperature | -40°C to +85°C |
Positioning | GPS, GLONASS, BeiDou |
Dimensions | 17.6mm x 15.7mm x 2.3mm |
Interfaces | UART, GPIO, ADC, I2C, SPI |
Antenna Interface | 50Ω impedance, supports external antenna |
Certifications | CE, FCC, RoHS, REACH |
The SIM 7020c module has a total of 42 pins. Below is a summary of the key pins:
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply input (3.1V to 4.2V) |
2 | GND | Ground connection |
3 | TXD | UART Transmit Data |
4 | RXD | UART Receive Data |
5 | RESET | Reset pin (active low) |
6 | PWRKEY | Power-on key (active low, hold for 1 second to power on/off) |
7 | NETLIGHT | Network status indicator (blinks to indicate connection status) |
8 | ADC_IN | Analog-to-Digital Converter input |
9 | GPIO1 | General-purpose input/output |
10 | GPIO2 | General-purpose input/output |
11 | I2C_SCL | I2C clock line |
12 | I2C_SDA | I2C data line |
13 | SPI_CLK | SPI clock line |
14 | SPI_MOSI | SPI Master Out Slave In |
15 | SPI_MISO | SPI Master In Slave Out |
16 | SPI_CS | SPI Chip Select |
17 | ANT | Antenna interface (50Ω impedance) |
For a complete pinout, refer to the official SIMCom datasheet.
AT+CGDCONT=1,"IP","<APN>"
to set the Access Point Name (APN).AT+CFUN=1
to enable full functionality.AT+NSOST
to send data and AT+NSORF
to receive data.Below is an example of how to interface the SIM 7020c with an Arduino UNO for basic communication:
SIM 7020c Pin | Arduino UNO Pin |
---|---|
VCC | 3.3V |
GND | GND |
TXD | Pin 10 (RX) |
RXD | Pin 11 (TX) |
PWRKEY | Digital Pin 7 |
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial sim7020c(10, 11); // RX = Pin 10, TX = Pin 11
#define PWRKEY 7 // Power key pin
void setup() {
pinMode(PWRKEY, OUTPUT);
digitalWrite(PWRKEY, HIGH); // Set PWRKEY high initially
// Start serial communication
Serial.begin(9600); // For debugging
sim7020c.begin(9600); // For SIM 7020c communication
// Power on the SIM 7020c module
digitalWrite(PWRKEY, LOW); // Pull PWRKEY low
delay(1000); // Hold for 1 second
digitalWrite(PWRKEY, HIGH); // Release PWRKEY
delay(5000); // Wait for the module to initialize
Serial.println("SIM 7020c Initialized");
}
void loop() {
// Send an AT command to check module status
sim7020c.println("AT");
delay(1000);
// Read and print the response
while (sim7020c.available()) {
String response = sim7020c.readString();
Serial.println(response);
}
delay(5000); // Wait before sending the next command
}
Module Not Powering On
No Network Connection
AT+CGDCONT
command.No Response to AT Commands
High Power Consumption
AT+CSCLK=1
command to enable sleep mode.Q: Can the SIM 7020c operate on 2G networks?
A: No, the SIM 7020c only supports LTE-M and NB-IoT networks.
Q: How do I update the firmware?
A: Firmware updates can be performed using the SIMCom firmware update tool via UART.
Q: What is the maximum data rate for NB-IoT?
A: The maximum uplink data rate is 66 kbps, and the maximum downlink data rate is 26 kbps.
Q: Can I use the SIM 7020c for GPS tracking?
A: Yes, the module supports GPS, GLONASS, and BeiDou for positioning.
For further assistance, refer to the official SIMCom documentation or contact technical support.