ウソッキー

Dependencies:   mbed

getGPS.h

Committer:
naruu
Date:
2020-12-19
Revision:
0:326c07d635d7

File content as of revision 0:326c07d635d7:

#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