QC Control software

Dependencies:   mbed

Fork of dgps by Colin Stearns

Committer:
dylanembed123
Date:
Fri Feb 21 15:15:25 2014 +0000
Revision:
6:434d20e99e49
Camera takes an image and sends it back to the USB.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dylanembed123 6:434d20e99e49 1 #ifndef _USB_H_
dylanembed123 6:434d20e99e49 2 #define _USB_H_
dylanembed123 6:434d20e99e49 3 #include "mbed.h"
dylanembed123 6:434d20e99e49 4 class USB{
dylanembed123 6:434d20e99e49 5 private:
dylanembed123 6:434d20e99e49 6 static Serial* pc;
dylanembed123 6:434d20e99e49 7 public:
dylanembed123 6:434d20e99e49 8 /// \brief Call this function to get a hold of the serial for USB.
dylanembed123 6:434d20e99e49 9 static Serial& getSerial();
dylanembed123 6:434d20e99e49 10 };
dylanembed123 6:434d20e99e49 11 #endif