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
getGPS.h
00001 #ifndef GPS_H 00002 #define GPS_H 00003 00004 #define GPSBAUD 9600 //ボーレート 00005 00006 class GPS { 00007 public: 00008 GPS(PinName gpstx,PinName gpsrx); 00009 00010 bool getgps(); 00011 00012 double longitude; 00013 double latitude; 00014 00015 private: 00016 Serial _gps; 00017 }; 00018 00019 #endif //GPS_H 00020
Generated on Wed Jul 13 2022 00:31:23 by
