test ver (get more data from GPS)

Dependents:   sample_GPS_GYSFDMAXB_edite_by_asha GPSDRV8833CanSat

getGPS.h

Committer:
asha_ndf
Date:
2021-10-12
Revision:
4:e1e7bfab1993
Parent:
2:4a3a10bc7309

File content as of revision 4:e1e7bfab1993:

#ifndef GPS_H
#define GPS_H

#define GPSBAUD 9600 //ボーレート

class GPS {
public:
    GPS(PinName gpstx,PinName gpsrx);
    
    bool getgps();
    //GPGGA
    double gpstime; //GPSから取得した時刻。
    double longitude;
    double latitude;
    double hdop; //位置情報精度
    double hight; //海抜高度
    //GPVTG
    double direction; //進行方向(真北基準)
    double speed; //対地速度kmph
    
    
private:
    Serial _gps;
};
 
#endif //GPS_H