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: Command Math OBROT RobotBase ShootingSystem Steering mbed
Diff: main.cpp
- Revision:
 - 0:bf802656c285
 - Child:
 - 3:74976774f006
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Oct 14 05:58:11 2015 +0000
@@ -0,0 +1,12 @@
+#include "OBROT.h"
+
+int main(){
+    OBROT::create();
+    OBROT* instance = OBROT::getInstance();
+    
+    while ( true ){
+        instance->update();
+    }
+    
+    return 0;
+}