stepper motor

Dependencies:   SimpleSteppers mbed

Files at this revision

API Documentation at this revision

Comitter:
cathal66
Date:
Mon Mar 26 06:34:16 2018 +0000
Commit message:
stepper motor

Changed in this revision

SimpleSteppers.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r c935687f4bfe SimpleSteppers.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SimpleSteppers.lib	Mon Mar 26 06:34:16 2018 +0000
@@ -0,0 +1,1 @@
+http://developer.mbed.org/users/AjK/code/SimpleSteppers/#7b7940df7865
diff -r 000000000000 -r c935687f4bfe main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Mar 26 06:34:16 2018 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+
+int main() {
+    while(1) {
+        myled = 1;
+        wait(0.2);
+        myled = 0;
+        wait(0.2);
+    }
+}
diff -r 000000000000 -r c935687f4bfe mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Mar 26 06:34:16 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/487b796308b0
\ No newline at end of file