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.
Dependencies: mbed-src
Fork of PwmOut_HelloWorld by
Prerequisite
This example is for PWM test using digital I/O. To implement this function, you need a Platform board.
Below are what we used.
- WIZwiki-W7500 from WIZnet (Platform board)
Hardware Configuration
WIZwiki-W7500 Pin map
Software
Init GPIO
PwmOut led(LED1);
Set PWM
led.period(4.0f); // 4 second period led.write(0.50f); // 50% duty cycle, relative to period