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
55.00RON
  • 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.

There are no reviews for this product.

Write a review

Note: HTML is not translated!
Bad           Good

Category Products

Arduino Due R3 - Original
Free Shipping Out of Stock
Arduino Due R3 - A High-Performance Development Board for Advanced ApplicationsThe Arduino Due R3 stands as a potent development board, engineered to ..
276.60RON
Arduino Leonardo R3The Arduino Leonardo R3 is a comprehensive microcontroller development board that injects innovation and adaptability into your ele..
40.98RON
Add to Cart
Arduino Mega 2560 R3 with USB CableThe Arduino Mega 2560 R3 stands as a potent development board, engineered to offer a comprehensive set of features ..
64.54RON
Add to Cart
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..
24.02RON
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.05RON
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.27RON
The product is currently Out-of-Stock. Enter your email address below and we will notify you as soon as the product is available.
Email

WhatsApp Chat

We are currently out of business hours, you can send a message from the contact section for support.