Technical Specifications
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.
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.
Revolutionize your location tracking projects with the 7Semi L86-M33 GPS GNSS Breakout Board. This high-performance module integrates cutting-edge positioning technology, delivering unmatched accuracy and unwavering reliability for a vast array of applications.
Board Dimensions


#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.
Good value overall. Documentation could be better though.
Got this running without much fuss. Setup was pretty easy to do. The accuracy is just what I was expecting from the product details.
It works well in my project. Kaam kar raha hai. The documentation available helped a lot to get it set up quickly. Good product.
It's decent for simple hobby projects. Performs as expected, nothing amazing but it gets the job done.
Picked this up recently from Evelta and am satisfied so far. Build quality feels good for the price point. Will order again.
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.