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.
Dependencies: mbed Servo BMP180
Diff: getGPS.h
- Revision:
- 0:e7b7def631c2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/getGPS.h Thu Oct 21 01:58:35 2021 +0000 @@ -0,0 +1,19 @@ +#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 \ No newline at end of file