asdf

Dependencies:   Motor Servo mbed

Files at this revision

API Documentation at this revision

Comitter:
TheDoctor822
Date:
Mon Apr 18 01:38:19 2016 +0000
Commit message:
Lab 7 part 2

Changed in this revision

Motor.lib Show annotated file Show diff for this revision Revisions of this file
Servo.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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Motor.lib	Mon Apr 18 01:38:19 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/simon/code/Motor/#f265e441bcd9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Servo.lib	Mon Apr 18 01:38:19 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/simon/code/Servo/#36b69a7ced07
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Apr 18 01:38:19 2016 +0000
@@ -0,0 +1,35 @@
+/************************************************************************************
+Lab 07 - Part 1
+This program takes in an integer and three float values from the user. It uses
+    the integer as a start trigger and increments the lights on the mbed to match
+    the float values by increments of 0.01.
+MIDN 3/C Drew Moore
+24 FEB 2016
+***********************************************************************************/
+
+
+#include "mbed.h"
+#include "Motor.h"
+#include "Servo.h"
+
+Serial pc(USBTX, USBRX); // tx, rx
+
+Servo myservo( p21 );
+
+int main() {
+
+myservo.calibrate( .0009, 90 );
+
+
+    while(1) {
+    
+        myservo = 0;
+        
+        for ( float i = 0; i < 1.0; i += 0.0555 ) {       
+            
+            myservo = i;
+            wait( .2 ); 
+        }
+    }
+}
+    
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Apr 18 01:38:19 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/252557024ec3
\ No newline at end of file