

The GNSS GPS L86-M33 Breakout by Soldered (Manufacturer Part ID: GNSS GPS L86-M33 NATIVE) is a compact and highly efficient GPS module designed for accurate positioning and navigation. Utilizing Global Navigation Satellite System (GNSS) technology, this module provides precise location data, making it ideal for a wide range of applications. Its breakout board design ensures easy integration into electronic projects, whether for hobbyists or professional developers.








| Parameter | Value |
|---|---|
| GNSS Technology | GPS, QZSS |
| Frequency Bands | L1 (1575.42 MHz) |
| Positioning Accuracy | < 2.5 meters CEP |
| Cold Start Time | < 35 seconds |
| Hot Start Time | < 1 second |
| Supply Voltage | 3.0V to 4.3V |
| Operating Current | 20 mA (typical) |
| Communication Interface | UART (default baud rate: 9600 bps) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 16 mm x 16 mm x 6 mm |
| Pin Name | Pin Number | Description |
|---|---|---|
| VCC | 1 | Power supply input (3.0V to 4.3V). |
| GND | 2 | Ground connection. |
| TX | 3 | UART Transmit pin (sends data to the host device). |
| RX | 4 | UART Receive pin (receives data from the host). |
| PPS | 5 | Pulse Per Second output for timing synchronization. |
| EN | 6 | Enable pin (active high to power on the module). |
Below is an example of how to interface the GNSS GPS L86-M33 with an Arduino UNO to read GPS data:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial gpsSerial(4, 3); // RX = Pin 4, TX = Pin 3
void setup() {
Serial.begin(9600); // Initialize Serial Monitor at 9600 bps
gpsSerial.begin(9600); // Initialize GPS module communication at 9600 bps
Serial.println("GNSS GPS L86-M33 Module Test");
Serial.println("Waiting for GPS data...");
}
void loop() {
// Check if data is available from the GPS module
while (gpsSerial.available()) {
char gpsData = gpsSerial.read(); // Read one character from GPS module
Serial.print(gpsData); // Print the character to Serial Monitor
// Note: GPS data is in NMEA format. Use a GPS library to parse it
// if you need specific information like latitude, longitude, etc.
}
}
No GPS Data Received:
Module Not Powering On:
Garbage Data on Serial Monitor:
Slow GPS Fix:
Q: Can the module work indoors?
Q: How do I parse NMEA sentences?
Q: Can I change the default baud rate?
Q: What is the PPS pin used for?
This concludes the documentation for the GNSS GPS L86-M33 Breakout. For further assistance, refer to the manufacturer's datasheet or contact Soldered support.