Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: main.cpp
- Revision:
- 1:aa352db03d0c
- Parent:
- 0:f31836d48420
diff -r f31836d48420 -r aa352db03d0c main.cpp
--- a/main.cpp Sun Mar 29 19:41:28 2020 +0000
+++ b/main.cpp Wed Apr 15 07:31:03 2020 +0000
@@ -1,18 +1,19 @@
#include "mbed.h"
-// https://os.mbed.com/docs/mbed-os/v5.15/tools/creating-a-new-program.html
-
-Serial pc(USBTX, USBRX, 115200); // baud rate 115200
-DigitalOut led(LED1); // led = LED1
+AnalogOut led(DAC0_OUT); //led = DAC0_OUT
int main()
{
+ float f;
+
while (true) {
- led = 0;
- printf("LED1 is ON\r\n");
- thread_sleep_for(500);
- led = 1;
- printf("LED1 is OFF\r\n");
- thread_sleep_for(500);
+ for(f = 0.5; f <= 1.0; f += 0.01){ //led from 50% of brightness to 100%
+ led.write(f);
+ thread_sleep_for(3000/50);
+ }
+ for(f = 1.0; f >= 0.5; f -= 0.01){ //led from 100% to 50%
+ led.write(f);
+ thread_sleep_for(3000/50);
+ }
}
}
\ No newline at end of file