
first commit
Revision 0:28a7761e2484, committed 2021-08-08
- Comitter:
- t00221549
- Date:
- Sun Aug 08 19:40:31 2021 +0000
- Commit message:
- first
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 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sun Aug 08 19:40:31 2021 +0000 @@ -0,0 +1,21 @@ +#include "mbed.h" +Serial pc(USBTX, USBRX); // tx, rx +PwmOut led(LED1); +float brightness = 0.0; +int main() +{ + pc.printf("Press 'u' to turn LED1 brightness up, 'd' to turn it down \r\n"); + while(1) { + char c = pc.getc(); + if((c == 'u') && (brightness < 0.5)) { + pc.putc('^'); + brightness += 0.01; + led = brightness; + } + if((c == 'd') && (brightness > 0.0)) { + pc.putc('v'); + brightness -= 0.01; + led = brightness; + } + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sun Aug 08 19:40:31 2021 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file