

The A7670C is a compact, low-power GPS module manufactured by SIMCom Limited (Part ID: A7670C-LNNV). It is designed for high-accuracy positioning and navigation applications. With its built-in antenna support and high-sensitivity receiver, the A7670C is ideal for integration into a wide range of devices, including drones, vehicles, and portable electronics. Its small form factor and low power consumption make it a versatile choice for modern GPS-enabled systems.








| Parameter | Value |
|---|---|
| Manufacturer | SIMCom Limited |
| Part ID | A7670C-LNNV |
| Operating Voltage | 3.0V to 4.3V |
| Power Consumption | < 1.5W (typical) |
| Positioning Accuracy | < 2.5 meters CEP |
| Sensitivity | -165 dBm |
| Communication Interface | UART, I2C, SPI |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 16.0mm x 16.0mm x 2.0mm |
The A7670C module has a standard pinout for easy integration into circuits. Below is the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (3.0V to 4.3V) |
| 2 | GND | Ground |
| 3 | TXD | UART Transmit Data |
| 4 | RXD | UART Receive Data |
| 5 | I2C_SCL | I2C Clock Line |
| 6 | I2C_SDA | I2C Data Line |
| 7 | SPI_MOSI | SPI Master Out Slave In |
| 8 | SPI_MISO | SPI Master In Slave Out |
| 9 | SPI_CLK | SPI Clock Line |
| 10 | SPI_CS | SPI Chip Select |
| 11 | ANT_IN | Antenna Input |
| 12 | RESET | Reset Pin (Active Low) |
Below is an example of how to connect the A7670C module to an Arduino UNO using the UART interface:
| A7670C Pin | Arduino UNO Pin |
|---|---|
| VCC | 3.3V |
| GND | GND |
| TXD | Pin 10 (RX) |
| RXD | Pin 11 (TX) |
| RESET | Pin 12 |
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial gpsSerial(10, 11); // RX = Pin 10, TX = Pin 11
void setup() {
// Initialize serial communication
Serial.begin(9600); // For debugging via Serial Monitor
gpsSerial.begin(9600); // Communication with A7670C module
// Notify user
Serial.println("A7670C GPS Module Initialized");
}
void loop() {
// Check if data is available from the GPS module
if (gpsSerial.available()) {
// Read and print GPS data to Serial Monitor
while (gpsSerial.available()) {
char c = gpsSerial.read();
Serial.print(c);
}
}
}
No GPS Signal Detected
Module Not Responding
Data Corruption in Communication
High Power Consumption
Q1: Can the A7670C operate indoors?
A1: The A7670C is optimized for outdoor use. While it may work indoors, signal reception may be weaker due to obstructions.
Q2: What is the maximum communication range?
A2: The A7670C does not have a fixed communication range as it depends on GPS satellite signals, which are global.
Q3: Is the module compatible with 5V systems?
A3: The A7670C operates at 3.0V to 4.3V. Use a level shifter if interfacing with a 5V system.
Q4: Does the module support GLONASS or Galileo?
A4: The A7670C primarily supports GPS. Refer to the manufacturer's datasheet for additional satellite system compatibility.
This concludes the documentation for the A7670C GPS Module. For further details, refer to the official datasheet or contact SIMCom Limited.