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

Dependents:   sample_GPS_GYSFDMAXB nucleo_sample_GPS_GYSFDMAXB sample_GPS_GYSFDMAXB_for_nucleo CanSat-C

getGPS.h

Committer:
CanSat_C
Date:
2018-07-09
Revision:
1:2046f20df896
Parent:
0:030ffb18f36d

File content as of revision 1:2046f20df896:

#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