ニョロゾ

Dependencies:   mbed BMP180

getGPS.h

Committer:
naruu
Date:
2020-12-18
Revision:
6:f862230de7b5
Parent:
2:98629c0bb9ff

File content as of revision 6:f862230de7b5:

#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