otamesi

Dependencies:   mbed

gps.h

Committer:
seangshim
Date:
2019-02-16
Revision:
41:7c537a922510
Parent:
0:a01fda36fde8

File content as of revision 41:7c537a922510:

#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