Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
4180_1
Date:
Thu Oct 29 16:38:37 2015 +0000
Commit message:
ver 1.0

Changed in this revision

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 76a291b4c5db main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Oct 29 16:38:37 2015 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+ 
+DigitalOut myled(LED1);
+DigitalOut Ctrl(p8); //Solenoid output control bit
+ 
+int main() {
+    while(1) {
+        Ctrl = 1; //ON
+        myled = 1;
+        wait(0.5); 
+        Ctrl = 0; //OFF
+        myled = 0;
+        wait(2);
+    }
+}
diff -r 000000000000 -r 76a291b4c5db mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Oct 29 16:38:37 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11
\ No newline at end of file