![](https://electroboat.in/uploads/media/2024/sim28-gps-module.jpg)
![](https://electroboat.in/media/image?path=uploads/media/2025/E-11.jpg&width=620&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/sim28-gps-module.jpg&width=175&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2025/E-11.jpg&width=172&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2024/sim28-gps-module.jpg&width=300&quality=80)
![](https://electroboat.in/media/image?path=uploads/media/2025/E-11.jpg&width=300&quality=80)
SIM28ML GPS Receiver Module with GPS antenna
SIM28 GPS Module is an smart receiver features with the 16 channels . Ultra low power GPS architecture. This complete enabled GPS receiver provides high position, velocity and time accuracy performances as well as high sensitivity and tracking capabilities. Built-in low noise.
₹ 999 ₹1,499
1,499
![](https://electroboat.in/assets/front_end/classic/images/cod_logo.png)
![](https://electroboat.in/assets/front_end/classic/images/cancelable.png)
![](https://electroboat.in/assets/front_end/classic/images/returnable.png)
Made In : | India |
Add FAQ
The GPS SIM28 is a GPS (Global Positioning System) module manufactured by SIMCom. It is designed to provide accurate positioning and navigation data by receiving signals from GPS satellites. Here’s an overview of the GPS SIM28 module:
Key Features:
-
GPS Functionality:
- Positioning: Provides accurate location data including latitude, longitude, and altitude.
- Speed and Time: Offers information about speed, heading, and time.
-
Frequency Bands:
- L1 Band: Operates on the L1 frequency band at 1575.42 MHz, which is the standard frequency used by GPS satellites.
-
Interfaces:
- Serial Communication: Communicates via UART (Universal Asynchronous Receiver-Transmitter) for easy integration with microcontrollers and other devices.
- Power Supply: Typically operates at 3.3V to 5V. Check specific module documentation for exact voltage requirements.
-
Accuracy:
- Positioning Accuracy: Provides high positional accuracy, typically within a few meters.
- Speed Accuracy: Provides accurate speed readings, useful for navigation and tracking applications.
- Altitude Accuracy: Measures altitude with good accuracy, usually within a few meters.
-
Update Rate:
- GPS Fix Rate: Can provide updates at rates of 1Hz (1 update per second), though some models may support higher rates.
-
Data Output:
- NMEA Sentences: Outputs GPS data in the form of NMEA (National Marine Electronics Association) sentences, which include information such as position, time, and satellite status.
-
Additional Features:
- Low Power Consumption: Designed for low power consumption, making it suitable for battery-operated devices.
- Built-in Antenna or External Antenna: Some modules come with an integrated antenna, while others may require an external GPS antenna.
Applications:
- Navigation Systems: Used in automotive navigation systems for providing accurate location and route guidance.
- Tracking Devices: Ideal for personal or vehicle tracking applications, allowing real-time location monitoring.
- Mapping and Surveying: Used in mapping and surveying applications to collect geographical data.
- IoT and Robotics: Integrates with IoT devices and robotics for autonomous navigation and location-based services.
Example Connection with Arduino:
To connect and use the GPS SIM28 module with an Arduino, follow these steps:
Wiring Instructions:
- GPS SIM28 to Arduino:
- VCC (GPS SIM28) to 5V (Arduino) (or 3.3V depending on the module specifications).
- GND (GPS SIM28) to GND (Arduino).
- TX (GPS SIM28) to RX (Arduino) (e.g., D2 if using SoftwareSerial).
- RX (GPS SIM28) to TX (Arduino) (e.g., D3 if using SoftwareSerial).
#include
#include
// Create a software serial port for communication with GPS module
SoftwareSerial ss(4, 3); // RX, TX
// Create an instance of the TinyGPS++ library
TinyGPSPlus gps;
void setup() {
// Start serial communication for debugging
Serial.begin(9600);
// Start software serial communication with the GPS module
ss.begin(9600);
Serial.println("GPS Module Test");
delay(1000); // Wait a bit for GPS to initialize
}
void loop() {
// Read data from GPS module and feed it to the GPS library
while (ss.available() > 0) {
gps.encode(ss.read());
// If a valid GPS fix is available, print the data
if (gps.location.isUpdated()) {
// Print the latitude and longitude
Serial.print("Latitude= ");
Serial.print(gps.location.lat(), 6); // Print latitude with 6 decimal places
Serial.print(" Longitude= ");
Serial.println(gps.location.lng(), 6); // Print longitude with 6 decimal places
// Print altitude
Serial.print("Altitude= ");
Serial.println(gps.altitude.meters()); // Altitude in meters
// Print time
Serial.print("Time= ");
if (gps.time.isValid()) {
Serial.print(gps.time.hour());
Serial.print(":");
Serial.print(gps.time.minute());
Serial.print(":");
Serial.print(gps.time.second());
}
else {
Serial.print("Invalid time");
}
Serial.println();
// Print number of satellites
Serial.print("Satellites= ");
Serial.println(gps.satellites.value());
}
}
}
0 Reviews For this Product
![](https://electroboat.in/uploads/seller/electroboat_logo3.jpeg)