Home
Arduino I/O Boards
Expansion Shield
Sensors
Tools
Accessories
Sign In
or
Register
Home
Sensors
uBlox LEA-5H Max 4Hz A-GPS GPS UART USB Compatible Arduino's IDE
Your cart is empty
Information
Payment and Shipping
Terms and Conditions
Privacy Notice
Notifications
Notify me of updates to
uBlox LEA-5H Max 4Hz A-GPS GPS UART USB Compatible Arduino's IDE
Tell A Friend
Tell someone you know about this product.
New Products
Arduino LG-NS AI Gripper 6 DOF Programmable Clamp Robot Arm
$254.99
Arduino Robot Platform 4WD Chassiss Robotics Kit [Ready to Run]
$165.00
Arduino Biped Robot Chassis BRAT 6 Servo Walker Kit Ready To Run
$304.99
Arduino 6 DOF Programmable Clamp Robot Arm Kit [Ready to Use]
$244.99
Arduino Alumin Hexapod Spider Six 3DOF Legs Robot with 18 Servos
$404.99
uBlox LEA-5H Max 4Hz A-GPS GPS UART USB Compatible Arduino's IDE
Click to Enlarge
Model: bzb8780078
Shipping Weight: 100g
6 Units in Stock
$85.00
Add to Cart:
Click to Enlarge
Click to Enlarge
Click to Enlarge
Click to Enlarge
Click to Enlarge
The LEA-5H is a high performance stand-alone GPS and GALILEO receiver module designed to allow easy, straightforward migration from its LEA-4 predecessors. It features u-blox' KickStart weak signal acquisition technology, as well as flexible connectivity options. The LEA-5H comes with built-in Flash memory that enables firmware updates and the storage of specific configuration settings in a non-volatile RAM. The built-in antenna supervisor supports external and active antennas, such as u-blox' ANN high performance GPS antenna.
u-Blox KickStart provides accelerated startup at weak signals, and our featured SuperSense? Indoor GPS is capable of tracking and acquiring even extremely weak signals. This makes the LEA-5H suitable for solutions using small or covert antennas.
Specification
Easy migration from LEA-4H and LEA-4P modules
Operating voltage: 2.7 - 3.6 V
LEA-5H Reference design documentation available with ceramic or GeoHelix antenna, UART and USB
2 Hz position update rate
Built-In Flash memory for fimware upgrades and storage of specific configuration settings
Antenna supervisor and supply
Antenna short and open circuit detection and protection for external antennas
1 UART, 1 USB and 1 DDC (I2C compliant) interface
GALILEO-ready
50-channel u-blox 5 engine with over 1 million effective correlators
Under 1 second Time-To-First-Fix for Hot and Aided Starts
SuperSense Indoor GPS: -160 dBm tracking sensitivity
Supports AssistNow Online and AssistNow Offline A-GPS services; OMA SUPL compliant
Supports SBAS (WAAS, EGNOS, MSAS, GAGAN)
Operating temperature range: -40 to 85°C
RoHS compliant (lead-free)
Ublox LEA-5h Webpage
Ublox Resource
Driver
Package Content
:
1x GPS Shield
1x Passive Attena
Sample Code
#include <Wire.h>
#define BUFFER_LENGTH 10
int GPSAddress = 0x42;
double Datatransfer(char *data_buf,char num)
{
double temp=0.0;
unsigned char i,j;
if(data_buf[0]=='-')
{
i=1;
while(data_buf[i]!='.')
temp=temp*10+(data_buf[i++]-0x30);
for(j=0;j<num;j++)
temp=temp*10+(data_buf[++i]-0x30);
for(j=0;j<num;j++)
temp=temp/10;
temp=0-temp;
}
else
{
i=0;
while(data_buf[i]!='.')
temp=temp*10+(data_buf[i++]-0x30);
for(j=0;j<num;j++)
temp=temp*10+(data_buf[++i]-0x30);
for(j=0;j<num;j++)
temp=temp/10 ;
}
return temp;
}
void rec_init()
{
Wire.beginTransmission(GPSAddress);
Wire.send(0xff);
Wire.endTransmission();
Wire.beginTransmission(GPSAddress);
Wire.requestFrom(GPSAddress,10);
}
char ID()
{
char i = 0;
char value[7]={
'$','G','P','G','G','A',',' };
char buff[7]={
'0','0','0','0','0','0','0' };
while(1)
{
rec_init();
while(Wire.available())
{
buff[i] = Wire.receive();
if(buff[i]==value[i])
{
i++;
if(i==7)
{
Wire.endTransmission();
return 1;
}
}
else
i=0;
}
Wire.endTransmission();
}
}
void UTC()
{
char i = 0,flag=0;
char value[7]={
'$','G','P','G','G','A',',' };
char buff[7]={
'0','0','0','0','0','0','0' };
char time[9]={
'0','0','0','0','0','0','0','0','0' };
double t=0.0;
while(1)
{
rec_init();
while(Wire.available())
{
if(!flag)
{
buff[i] = Wire.receive();
if(buff[i]==value[i])
{
i++;
if(i==7)
{
i=0;
flag=1;
}
}
else
i=0;
}
else
{
time[i] = Wire.receive();
i++;
if(i==9)
{
t=Datatransfer(time,2);
t=t+80000.00;
Serial.println(t);
Wire.endTransmission();
return;
}
}
}
Wire.endTransmission();
}
}
void rec_data(char *buff,char num1,char num2)
{
char i=0,count=0;
if(ID())
{
while(1)
{
rec_init();
while(Wire.available())
{
buff[i] = Wire.receive();
if(count!=num1)
{
if(buff[i]==',')
count++;
}
else
{
i++;
if(i==num2)
{
Wire.endTransmission();
return;
}
}
}
Wire.endTransmission();
}
}
}
void latitude()
{
char lat[10]={
'0','0','0','0','0','0','0','0','0','0' };
rec_data(lat,1 ,10);
Serial.println(Datatransfer(lat,5),5);
}
void lat_dir()
{
char dir[1]={'0'};
rec_data(dir,2,1);
Serial.println(dir[0],BYTE);
}
void longitude()
{
char lon[11]={
'0','0','0','0','0','0','0','0','0','0','0' };
rec_data(lon,3,11);
Serial.println(Datatransfer(lon,5),5);
}
void lon_dir()
{
char dir[1]={'0'};
rec_data(dir,4,1);
Serial.println(dir[0],BYTE);
}
void altitude()
{
char i=0,count=0;
char alt[8]={
'0','0','0','0','0','0','0','0' };
if(ID())
{
while(1)
{
rec_init();
while(Wire.available())
{
alt[i] = Wire.receive();
if(count!=8)
{
if(alt[i]==',')
count++;
}
else
{
if(alt[i]==',')
{
Serial.println(Datatransfer(alt,1),1);
Wire.endTransmission();
return;
}
else
i++;
}
}
Wire.endTransmission();
}
}
}
void setup()
{
Wire.begin();
Serial.begin(9600);
Serial.println("$GPGGA Data: ");
}
void loop()
{
while(1)
{
Serial.print("UTC:");
UTC();
Serial.print("Lat:");
latitude();
Serial.print("Dir:");
lat_dir();
Serial.print("Lon:");
longitude();
Serial.print("Dir:");
lon_dir();
Serial.print("Alt:");
altitude();
Serial.println(" ");
}
}
Customers who bought this product also purchased...
UNO ATmega328 V2 Controller Board for Arduino IDE ATmega8U2 Chip
Single Relay Shield Digital Module Compatible Arduino's IDE
Arduino Wireless Programming Module Range20 Meters 115200 Braud
V1 All-in-One Controller with USB Cable for Arduino's IDE
Triple Axis Accelerometer Freescale MMA7361 Sensor
XBee/Bluetooth Bee USB Adapter With Mini-USB Cable
Your IP Address is: 107.20.129.212, We report all Internet Frauds and Crimes to the Law Enforcement Units and AntiFraud organizations around the world.
Copyright © 2010-2013
Bizoner.com
All Rights Reserved.
E-mail:
sales@bizoner.com
.