Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
getGPS.h
- Committer:
- aihara
- Date:
- 2020-12-19
- Revision:
- 2:19c8f66ab10f
- Parent:
- 0:b54d41dacf49
File content as of revision 2:19c8f66ab10f:
#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