ロロロロ

Dependencies:   mbed BMP180

getGPS.h

Committer:
naruu
Date:
2020-12-17
Revision:
2:98629c0bb9ff

File content as of revision 2:98629c0bb9ff:

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