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.
main.cpp
- Committer:
- alanffrench
- Date:
- 2020-07-29
- Revision:
- 0:93c0b23101f4
File content as of revision 0:93c0b23101f4:
#include "mbed.h" Serial pc(USBTX, USBRX); PwmOut led(LED1); float brightness = 0.0; int main(){ pc.printf("Press 'u' to turn LED1 brightness up, 'd' to turn it down\n"); while (1){ char c = pc.getc(); if((c=='u') && (brightness < 0.5)){ brightness += 0.01; led = brightness; pc.putc('^'); } if((c=='d') && (brightness > 0.0)){ brightness -= 0.01; led = brightness; pc.putc('v'); } } }