As of Monday morning, so this is the code we showed at Uncraftivism.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 
00002 #include "mbed.h"
00003 #include "ucam.h"
00004 #include "Servo.h"
00005 
00006 
00007 
00008 
00009 LocalFileSystem local("local");
00010 //UCam ucam(p13, p14);
00011 
00012 
00013 void UCamInit();
00014 Frame* UCamGetDiff( );
00015 
00016 
00017 
00018 int main() {
00019    
00020 
00021    
00022     UCamInit();
00023     while( true )
00024     {
00025         UCamGetDiff();
00026     }
00027        
00028 }
00029 
00030