test

Dependencies:   mbed

Fork of PwmOut_HelloWorld by mbed_example

Files at this revision

API Documentation at this revision

Comitter:
maoko0628
Date:
Fri Jul 06 04:45:20 2018 +0000
Parent:
2:51cd5763b12f
Commit message:
??

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
--- a/main.cpp	Fri Jun 29 04:51:26 2018 +0000
+++ b/main.cpp	Fri Jul 06 04:45:20 2018 +0000
@@ -1,11 +1,11 @@
 #include "mbed.h"
 
-PwmOut led(LED1);
+PwmOut led(dp18);
 
 int main() {
     // specify period first
-    led.period(1.0f);      // 4 second period
-    led.write(0.10f);      // 50% duty cycle, relative to period
+    led.period(4.0f);      // 4 second period
+    led.write(0.50f);      // 50% duty cycle, relative to period
     //led = 0.5f;          // shorthand for led.write()
     //led.pulsewidth(2);   // alternative to led.write, set duty cycle time in seconds
     while(1);
--- a/mbed.bld	Fri Jun 29 04:51:26 2018 +0000
+++ b/mbed.bld	Fri Jul 06 04:45:20 2018 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/552587b429a1
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/a7c7b631e539
\ No newline at end of file