null

Unlock a 3% Reward on Every Order!

Same Day Shipping if Order Placed by 2pm

GST Invoice on All Orders

7Semi L86-M33 GPS GNSS Breakout Board

7Semi

1 review Write a Review
SKU:
004-CM-10120
Manufacturer Part Number:
CM-10120
₹1,032.50 inc. GST
₹875.00 ex. GST
₹1,032.50 inc. GST
₹875.00 ex. GST

Description

The L86-M33 GPS GNSS Breakout Board is a game-changing device for anyone in need of accurate location data. This high-performance GPS module features advanced positioning technology that provides unparalleled accuracy and reliability, making it an ideal choice for a wide range of applications. With its compact and easy-to-use design, the L86-M33 GPS GNSS Breakout Board is perfect for use in drones, robotics, navigation systems, and much more. The board's powerful GNSS receiver provides precise location data even in challenging environments, ensuring that you always have access to the information you need. Whether you're a professional engineer or an avid hobbyist, the L86-M33 GPS GNSS Breakout Board is the ultimate solution for all your location tracking needs.

This breakout board integrates Quectel’s L86 an ultra-compact GNSS module that integrates a 18.4x18.4x4.0mm patch antenna along with an external antenna connector. It uses MediaTek’s new generation GNSS MT3333 chip. The board operates on 3.3V power supply and communicates with the target MCU through UART interface TX, RX, FON, and RESET pins. A V_BACK connection pin for a backup power supply is also available.

Through advanced AGPS (EASY) orbit prediction technology and power saving mode (AlwaysLocate technology), the L86 module achieves high performance and fully meets industry standards. EASY technology enables L86 to automatically calculate and predict orbit information for up to three days, and store this information in the internal RAM memory, which can achieve low-power fast positioning even under weak indoor signals. The use of AlwaysLocate technology enables the L86 to automatically adjust the positioning time according to different environmental conditions and operating modes, which greatly reduces the power consumption of the module while ensuring positioning accuracy.

L86 supports the intelligent detection of antenna plug-in and short-circuit protection. It also supports automatic switching between the built-in patch antenna and the external active antenna, and the positioning is continued during the switching process.

It is especially suitable for automotive, personal tracking, industrial-grade PDA and GPS receivers and OBD applications.

Key Features
  • The board uses a 3.3V power supply only
  • UART communication interface
  • 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
  • Time service supports PPS and NMEA synchronization function
  • Support the SDK commands independently developed by Quectel
Resources

 

Board Dimensions

https://cdn11.bigcommerce.com/s-3fd3md1ghs/product_images/uploaded_images/eve-gnss-breakout-dimentions.png?t=1613644740

L86-M33GNSS Breakout Arduino Connection

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
}

A GPS GNSS Breakout Board is a small electronic circuit board that allows users to easily integrate GPS and GNSS capabilities into their projects. It typically features a GPS/GNSS chipset, which receives signals from orbiting satellites to provide precise positioning and navigation data. The board is designed to be easily connected to other devices, such as microcontrollers or computers, and can communicate using a variety of interfaces, including serial, I2C, and SPI. GPS GNSS Breakout Boards are commonly used in a wide range of applications, including vehicle tracking, asset management, and robotics, where accurate location information is required.

Technical Specifications

Brand:
7Semi

Warranty Information

All the products supplied by Evelta are genuine and original. We offer 14 days replacement warranty in case of manufacturing defects. For more details, please visit our cancellation and returns page.

    1 Reviews

  • Posted by Nitin Vora on 13th Feb 2023

    5

    Good price

    I was looking for a low-cost GPS module to add to my projects and found this. It seemed like it had a good price, so I bought it and it works really well.