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.
handle/handleGPS.h
- Committer:
- dylanembed123
- Date:
- 2014-04-01
- Revision:
- 4:c75d5e5e6bfc
- Child:
- 6:f0248eb6714d
File content as of revision 4:c75d5e5e6bfc:
#ifndef _HANDLEGPS_H_ #define _HANDLEGPS_H_ #include "adapt/usb.h" #include "adapt/camera.h" class GPSHandle{ private: GPS gps bool initialized; /// \brief Setup void setup(); /// \brief Update the GPS locations void update(); /// \brief Check if it is time to update bool check(); public: /// \brief Constructor ImageHandle():initialized(false){} /// \brief Run an instance of this void run(); }; #endif