My Account

Your Cart

A9G Pudding/ GPRS GSM+GPS BDS A9G Development Board Kit

A9G Pudding/ GPRS GSM+GPS BDS A9G Development Board Kit
A9G Pudding/ GPRS GSM+GPS BDS A9G Development Board Kit
54.88RON
Ex Tax: 54.88RON
  • Stock: In Stock
  • Model: C200.A9G
Your orders placed until 16:30 on weekdays are shipped on the same day.

A9G Pudding/ GPRS GSM+GPS BDS A9G Development Board Kit

The A9G Pudding/ GPRS GSM+GPS BDS A9G Development Board Kit is a versatile and robust development board designed to provide superior performance in a variety of applications. This kit is ideal for those looking to develop and prototype IoT and GPS-based projects.

Key Features

  • Integrated GPRS GSM and GPS BDS modules for seamless connectivity and precise location tracking.
  • Onboard microphone and speaker interfaces for audio input and output.
  • Supports quad-band GSM/GPRS network, available for GPRS and SMS message data remote transmission.
  • Equipped with a low power consumption design, ensuring long-lasting performance.

Technical Specifications

  • Operating Voltage: 3.3V to 4.2V
  • Standby average current: below 3mA
  • Supports GSM/GPRS Quad-band, including 850, 900, 1800, 1900MHZ
  • Supports GPS+Beidou+Glonass positioning
  • Onboard active GPS antenna and GSM antenna

Project Idea:

Create a compact GPS tracker that sends real-time location data via SMS using the A9G Development Board.

Required Components:

  • A9G Development Board (GPRS + GSM + GPS + BDS)
  • SIM card with SMS and GPRS capability
  • Micro USB cable
  • GPS antenna (optional but recommended)
  • Arduino IDE installed on your PC

How It Works:

  1. Insert the SIM card into the A9G module.
  2. Connect the board to your computer using the micro USB cable.
  3. Upload the code provided below using Arduino IDE (choose the correct COM port).
  4. The board connects to GPS satellites and retrieves location coordinates.
  5. It sends the GPS location to your phone via SMS.

Example Arduino Code:

 #include <SoftwareSerial.h>
SoftwareSerial A9G(7, 8); // RX, TX  

void setup() 
{   
Serial.begin(9600);   
A9G.begin(9600);   
delay(1000);    
sendAT("AT");   
sendAT("AT+CMGF=1"); // Set SMS mode to text   
sendAT("AT+CGNSPWR=1"); // Power on GPS   
sendAT("AT+CGNSSEQ="RMC""); // Set GPS output format 
}  
void loop() 
{   
Serial.println("Getting GPS location...");   
A9G.println("AT+CGNSINF");   
delay(2000);    
if (A9G.available()) 
{     
String gpsData = A9G.readString();     
Serial.println(gpsData);          
int latIndex = gpsData.indexOf(",") + 1;     
int lonIndex = gpsData.indexOf(",", latIndex) + 1;      
String location = gpsData.substring(latIndex, lonIndex + 10);     
String smsCmd = "AT+CMGS="+1234567890""; // Replace with your phone number      
sendAT(smsCmd);    
delay(1000);     
A9G.print("GPS Location: ");     
A9G.print(location);     
A9G.write(26); // CTRL+Z to send SMS     
delay(10000);   
} 
}  
void sendAT(String cmd) 
{  
A9G.println(cmd);   
delay(1000);   
while (A9G.available()) 
{     
Serial.println(A9G.readString());   
} 
} 

Use Cases:

  • ✔️ Real-time vehicle tracking
  • ✔️ Personal safety devices
  • ✔️ Pet or child tracking
  • ✔️ Remote location-based alerts

Why Choose A9G?

This all-in-one GSM, GPRS, GPS, and BDS development board is ideal for mobile and IoT projects. Compact, affordable, and beginner-friendly — a perfect tool for learning and prototyping.

Write a review

Note: HTML is not translated!
Rating
Bad Good

Category Products

Arduino Nano V3 and USB CableIntroducing the Arduino Nano V3, a miniature yet powerful development board that opens the door to a world of electronics..
23.97RON
Ex Tax:23.97RON
Add to Cart
Arduino Nano V3 Development BoardIntroducing the Arduino Nano V3, a miniature yet powerful development board that opens the door to a world of electro..
23.00RON
Ex Tax:23.00RON
Add to Cart
Arduino Pro MicroThe Arduino Pro Micro stands out as a compact and powerful development board, designed to excel in projects where size matters. With ..
32.20RON
Ex Tax:32.20RON
Arduino Pro Micro Type-CThe Arduino Pro Micro is a compact, yet robust development board, engineered to perform exceptionally in projects where space ..
32.20RON
Ex Tax:32.20RON
Arduino Pro Mini 3.3V Module Introducing the Arduino Pro Mini 3.3V module, a compact and high-performance development board that brings versatility an..
18.40RON
Ex Tax:18.40RON
Add to Cart
Arduino Pro Mini 5V ModuleIntroducing the Arduino Pro Mini 5V module, a compact and high-performance development board that brings versatility and pow..
18.40RON
Ex Tax:18.40RON

WhatsApp Chat

Hi Guest! Please click one of our representatives Below To Chat On WhatsApp.