Dependents:   Lab3_Surveillance 6adcSerial

GPS.h

Committer:
keerthanasp
Date:
2011-02-01
Revision:
1:b4de63a99f18
Parent:
0:14fd31ae13bb

File content as of revision 1:b4de63a99f18:

#include "mbed.h"
#ifndef MBED_GPS_H
#define MBED_GPS_H
class GPS {
public:
    GPS(PinName tx, PinName rx);
    int sample();
    float longitude;
    float latitude;
private:
    float trunc ( float v);
    void getline();
    Serial _gps;
    char msg[256];
};
#endif