gps

Dependencies:   mbed

getGPS.h

Committer:
naruu
Date:
2020-10-15
Revision:
3:c64909f39383
Parent:
0:77bff687ff05

File content as of revision 3:c64909f39383:

#ifndef GPS_H
#define GPS_H
 
#define GPSBAUD 9600 //ボーレートを9600に設定
 
class GPS {
public:
    GPS(PinName gpstx,PinName gpsrx);
    
    bool getgps();
 
    double longitude;
    double latitude;
    
private:
    Serial _gps;
};
 
#endif