Yuya Aihara / Mbed 2 deprecated maimai

Dependencies:   mbed

getGPS.h

Committer:
sugihara0312
Date:
2020-12-19
Revision:
0:b54d41dacf49

File content as of revision 0:b54d41dacf49:

#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