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:
- kekkok
- Date:
- 2018-11-02
- Revision:
- 0:53d3866c8733
File content as of revision 0:53d3866c8733:
#include "mbed.h"
PwmOut mypwm(D5);//il led d5
DigitalOut myled(LED1);
int main() {
while(1){
for(int i=1;i<10;i++){
mypwm.period_ms(10); //definisco il periodo
mypwm.pulsewidth_ms(1);
wait(1);//aspetto un secondo prima di cambiare colore
}}
}