Product Overview
The Arduino shield incorporates Quectel's L86, an ultra-compact GNSS module featuring an 18.4x18.4x4.0mm patch antenna and an external antenna connector. Utilizing MediaTek's latest GNSS MT3333 chip, the L86 module achieves exemplary performance, adhering to industry standards. Leveraging advanced AGPS (EASY) orbit prediction technology and power-saving mode (AlwaysLocate technology), the module excels in functionality. The EASY technology empowers the L86 to autonomously compute and forecast orbit details for up to three days, storing this data in internal RAM for efficient low-power rapid positioning, even in areas with weak indoor signals. Meanwhile, the implementation of AlwaysLocate technology allows the L86 to dynamically adapt positioning times based on varying environmental conditions and operational modes, significantly minimizing module power consumption without compromising accuracy.
The shield boasts intelligent antenna plug-in detection and short-circuit protection. Additionally, it supports seamless automatic switching between the internal patch antenna and an external active antenna, ensuring continuous positioning throughout the transition process.
-
Support multiple satellite systems: GPS, GLONASS, Galileo and QZSS
-
Internal patch antenna: 18.4mm x 18.4mm x 4.0mm
-
Support internal and external antenna automatic switching
-
Support short circuit protection and antenna detection
-
Built-in low-noise amplifier to improve receiving high sensitivity
-
Support self-assisted AGPS (EASY TM technology, no external memory required)
-
Very low current consumption: 26mA @tracking mode
-
Multiple power saving modes: standby Mode, Backup Mode, Periodic Mode, AlwaysLocate Mode
-
LOCUS technology, support automatic log information recording and storage
-
High sensitivity: -167dBm@tracking mode, -149dBm@acquisition mode
-
Number of channels: 99 capture channels, 33 tracking channels
-
Support Balloon mode, positioning altitude up to 80km
-
Support DGPS, SBAS (WAAS/EGNOS/MSAS/GAGAN)
-
Multi-frequency active interference cancellation technology to enhance anti-interference ability
-
CR1220 GPS/GNSS Back-up Battery holder at the bottom side of the board
-
External Active GNSS Antenna Connector
-
LEDs: Power, Status, Netlight
- EVE L86 GNSS Shield User Manual
- Quectel L86 GNSS Specification
- Quectel L86 Hardware Design
- Quectel Android GNSS Driver User Guide
- Quectel GNSS DGPS RTCM Test Guide
- Quectel GNSS FOTA User Guide
- Quectel GNSS Patch Antenna Module Design Guide
- Quectel GNSS SDK Commands Manual
- QCOM_V1.6 for Windows
- QFlash_V4.19_EN for Windows
- Qnavigator_V1.6.9.1 for Windows
Board Dimension
Arduino Code for GPS Read
#include <SoftwareSerial.h> // Include the SoftwareSerial library
#define ARDUINO_GPS_RX 9 // Arduino RX pin connected to GPS TX
#define ARDUINO_GPS_TX 8 // Arduino TX pin connected to GPS RX
#define GPS_BAUD_RATE 9600 // The GPS Shield module defaults to 9600 baud
// Create a SoftwareSerial object called gps:
SoftwareSerial gpsPort(ARDUINO_GPS_TX, ARDUINO_GPS_RX);
// This is the hardware serial port on pins 0/1.
#define SerialMonitor Serial
void setup()
{
gpsPort.begin(GPS_BAUD_RATE);
SerialMonitor.begin(9600);
}
void loop()
{
if (gpsPort.available()) // If GPS data is available
SerialMonitor.write(gpsPort.read()); // Read it and print to SerialMonitor
if (SerialMonitor.available()) // If SerialMonitor data is available
gpsPort.write(SerialMonitor.read()); // Read it and send to GPS
}
Warranty Information
Reviews