Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: Gameduino mbed CommonTypes
Diff: main.cpp
- Revision:
- 0:13f69384ff8a
diff -r 000000000000 -r 13f69384ff8a main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sat May 05 11:46:26 2012 +0000
@@ -0,0 +1,18 @@
+/*
+ * SOURCE FILE : main.cpp
+ *
+ * Test program for a Gameduino.
+ *
+ */
+
+#include "mbed.h"
+#include "GameduinoTest.h"
+
+/****************/
+/* MAIN PROGRAM */
+/****************/
+int main() {
+ GameduinoTest test;
+ test.Run();
+ return 0;
+}