Testprogram for PID

Dependencies:   PID mbed

Files at this revision

API Documentation at this revision

Comitter:
gert_lauritsen
Date:
Fri Jun 02 19:37:52 2017 +0000
Commit message:
testprogram

Changed in this revision

PID.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 e690cb805173 PID.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PID.lib	Fri Jun 02 19:37:52 2017 +0000
@@ -0,0 +1,1 @@
+https://developer.mbed.org/users/gert_lauritsen/code/PID/#f6efcf8146b1
diff -r 000000000000 -r e690cb805173 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Jun 02 19:37:52 2017 +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 e690cb805173 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Fri Jun 02 19:37:52 2017 +0000
@@ -0,0 +1,1 @@
+https://mbed.org/users/mbed_official/code/mbed/builds/86740a56073b
\ No newline at end of file