The Copernicus II DIP Module is a compact, high-performance GPS receiver with an integrated antenna designed for a broad spectrum of OEM applications. It is capable of providing precise position and time information. Common applications include asset tracking, navigation devices, time synchronization, and location-based services.
Pin Number | Name | Description |
---|---|---|
1 | VCC | Power supply input (2.7V to 3.6V) |
2 | GND | Ground connection |
3 | TX | Serial transmit output (TTL level) |
4 | RX | Serial receive input (TTL level) |
5 | ON/OFF | Power control pin (pull low to power down) |
6 | RESET | Module reset input (active low) |
7 | PPS | Pulse per second output |
8 | NC | No connection (reserved for future use) |
#include <SoftwareSerial.h>
SoftwareSerial gpsSerial(10, 11); // RX, TX
void setup() {
// Start the serial communication with the host computer
Serial.begin(9600);
while (!Serial) {
; // Wait for serial port to connect.
}
// Start communication with the GPS module
gpsSerial.begin(4800);
Serial.println("GPS Module Copernicus II DIP started");
}
void loop() {
// Check if data is available from the GPS module
if (gpsSerial.available()) {
// Forward the data from the GPS module to the host computer
Serial.write(gpsSerial.read());
}
// Check if data is available from the host computer
if (Serial.available()) {
// Forward the data from the host computer to the GPS module
gpsSerial.write(Serial.read());
}
}
Q: Can I use an external antenna with the Copernicus II DIP Module? A: The module comes with an integrated antenna, but it also supports an external antenna if needed.
Q: What is the default baud rate for the Copernicus II DIP Module? A: The default baud rate is 4800 bps.
Q: How can I change the update rate of the GPS module? A: The update rate can be configured using proprietary configuration commands. Refer to the module's datasheet for detailed instructions.
Q: Is the Copernicus II DIP Module waterproof? A: The module itself is not waterproof. It should be housed in a waterproof enclosure if used in outdoor environments.
For further assistance, consult the Copernicus II DIP Module datasheet or contact technical support.