Difference between revisions of "GPS Shield With SD Card Slot for Arduino V2.0 B"

From LinkSprite Playgound
Jump to: navigation, search
(Introduction)
 
Line 7: Line 7:
 
[[File:N94DG WITHOUT PACKAGED BACK.jpg|640px]]
 
[[File:N94DG WITHOUT PACKAGED BACK.jpg|640px]]
  
[[File:N94DG PACKAGED FRONT.jpg|640px]]
 
 
[[File:N94DG PACKAGED BACK.jpg|640px]]
 
  
 
== Features  ==
 
== Features  ==

Latest revision as of 01:45, 12 October 2015

Introduction

Arduino GPS shield is a GPS module breadout board designed for Global Positioning System receiver with SD interface. It is easy to use for recording the position data into SD card.

N94DG WITHOUT PACKAGED FRONT.jpg

N94DG WITHOUT PACKAGED BACK.jpg


Features

  • With SD interface
  • Active antenna design with high receive sensitivity, compatible normal antenna
  • Extremely fast time to first fix at low signal level
  • UART interface
  • Operation temperature: -40℃ ~ +85℃


Application Ideas

Cautions

Schematic

Specification

Pin definition and Rating

Mechanic Dimensions

Usage

Hardware Installation

Install GPS SD Shield V2-B onto Arduino Uno, and use jumpers to short TX and MRX, RX and MTX. In this way, the MCU talks to the GPS module.

HW-GPS-V2B-01.jpg

Programming

Test GPS module

<syntaxhighlight lang="c">

void setup() {

   Serial.begin(9600);       

} void loop() {

 if (Serial.available() > 0) 
  { 
       Serial.print(char(Serial.read()));   
  }

}

</syntaxhighlight>

Compile and execute:


HW-GPS-V2B-02.jpg

Test SD card

It can use the built-in SD card example code in Arduino IDE.


HW-GPS-V2B-03.jpg


We can observe the date being written into SD card through serial port.


HW-GPS-V2B-04.jpg

FAQ

Support

If you have questions or other better design ideas, you can go to our forum to discuss or creat a ticket for your issue at linksprite support.

Resources

How to buy

Here to buy GPS Shield With SD Card Slot for Arduino V2.0 B on store

See Also

Other related products and resources.

Licensing

This documentation is licensed under the Creative Commons Attribution-ShareAlike License 3.0 Source code and libraries are licensed under GPL/LGPL, see source code files for details.