The Mini Traceur GPS 4G ZX908 CAT1 PCBA, manufactured by Shenzhen Bojietong Electronic Technology Co., Ltd, is a compact and versatile GPS tracking module. It supports 4G connectivity for real-time location tracking and monitoring. Designed with a printed circuit board assembly (PCBA), this module is easy to integrate into a wide range of applications, including vehicle tracking, asset monitoring, and IoT systems.
Parameter | Specification |
---|---|
Model | ZX908 CAT1 PCBA |
Network Connectivity | 4G LTE (CAT1) |
GPS Sensitivity | -165 dBm |
Positioning Accuracy | < 2.5 meters |
Operating Voltage | 3.3V to 4.2V |
Power Consumption | < 1W (active mode) |
Communication Protocols | UART, TCP/IP, MQTT |
Operating Temperature | -40°C to +85°C |
Dimensions | 40mm x 30mm x 5mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply input (3.3V to 4.2V) |
2 | GND | Ground connection |
3 | TXD | UART Transmit Data |
4 | RXD | UART Receive Data |
5 | GPS_ANT | GPS antenna connection |
6 | NET_STATUS | Network status indicator (active high) |
7 | RESET | Module reset (active low) |
8 | PWR_KEY | Power on/off control |
Below is an example of how to interface the ZX908 module with an Arduino UNO for basic GPS data retrieval:
#include <SoftwareSerial.h>
// Define RX and TX pins for the ZX908 module
SoftwareSerial gpsSerial(10, 11); // RX = Pin 10, TX = Pin 11
void setup() {
Serial.begin(9600); // Initialize Serial Monitor at 9600 baud
gpsSerial.begin(9600); // Initialize GPS module communication at 9600 baud
Serial.println("Initializing ZX908 GPS Module...");
}
void loop() {
// Check if data is available from the GPS module
if (gpsSerial.available()) {
while (gpsSerial.available()) {
char c = gpsSerial.read(); // Read one character at a time
Serial.print(c); // Print the character to the Serial Monitor
}
}
delay(1000); // Wait for 1 second before checking again
}
Note: Replace 10
and 11
with the appropriate pins if using different connections. Ensure the baud rate matches the module's default UART settings.
No GPS Signal:
Module Not Powering On:
No Data from UART:
Network Connection Issues:
Q: Can the module operate without a SIM card?
A: The GPS functionality can work without a SIM card, but 4G connectivity for data transmission requires a valid SIM card.
Q: What is the default baud rate for UART communication?
A: The default baud rate is 9600 bps.
Q: Can I use this module with a 5V microcontroller?
A: Yes, but you must use a level shifter to convert the 5V logic to 3.3V for the module's UART pins.
Q: How do I check the network status?
A: Monitor the NET_STATUS pin. A high signal indicates an active network connection.
By following this documentation, users can effectively integrate and utilize the Mini Traceur GPS 4G ZX908 CAT1 PCBA in their projects.