QC Control software

Dependencies:   mbed

Fork of dgps by Colin Stearns

handle/handleGPS.h

Committer:
dylanembed123
Date:
2014-04-01
Revision:
7:c75d5e5e6bfc
Child:
8:28b866df62cf

File content as of revision 7: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