its a template, it uses public code

Dependencies:   Glue MODSERIAL Scissors m3pi mbed

Files at this revision

API Documentation at this revision

Comitter:
hex705
Date:
Fri Jul 05 13:16:20 2013 +0000
Parent:
0:29d58b75e636
Child:
2:db4f4bf756b9
Commit message:
fix starting point;

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Fri Jul 05 13:10:45 2013 +0000
+++ b/main.cpp	Fri Jul 05 13:16:20 2013 +0000
@@ -1,12 +1,25 @@
 #include "mbed.h"
+#include "m3pi.h"
 
-DigitalOut myled(LED1);
+#include "MODSERIAL.h"
+#include "Scissors.h"
+#include "Glue.h"
+
 
-int main() {
+void loop ( void );
+
+void main () {
+
     while(1) {
-        myled = 1;
-        wait(0.2);
-        myled = 0;
-        wait(0.2);
+        loop ();
     }
+    
+} // end main
+
+
+void loop () {
+
 }
+
+
+