QC Control software

Dependencies:   mbed

Fork of dgps by Colin Stearns

handle/handleCamera.h

Committer:
dylanembed123
Date:
2014-04-03
Revision:
9:da906eeac51e
Parent:
7:c75d5e5e6bfc
Child:
12:e42985e3ea64

File content as of revision 9:da906eeac51e:

#ifndef _TAKEIMAGE_H_
#define _TAKEIMAGE_H_

#include "adapt/usb.h"
#include "adapt/camera.h"
#include <algorithm>
class ImageHandle{
private:
    Camera cam;
    bool initialized;
    
    /// \brief Setup the camera.
    void setup();
    /// \brief Take an image and send it over USB
    void take();
    /// \brief Check if an image must be taken
    bool check();
public:
    /// \brief Constructor
    ImageHandle():initialized(false){}
    /// \brief Run an instance of this
    void run();
};

#endif