GPSセンサモジュールの動作確認プログラム

Dependents:   sample_GPS_GYSFDMAXB nucleo_sample_GPS_GYSFDMAXB sample_GPS_GYSFDMAXB_for_nucleo CanSat-C

getGPS.h

Committer:
CanSat_C
Date:
2018-07-07
Revision:
0:030ffb18f36d

File content as of revision 0:030ffb18f36d:

#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