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
main.cpp
- Committer:
- vjwramasamy
- Date:
- 2015-06-28
- Revision:
- 0:7af46b533435
File content as of revision 0:7af46b533435:
#include "mbed.h"
Timeout timer;
DigitalOut my_led(LED1);
DigitalOut my_pwm(D10); // IO used by pwm_io function
int on_delay = 0;
int off_delay = 0;
void toggleOff(void);
void toggleOn(void) {
my_pwm = 1;
timer.attach_us(toggleOff, on_delay);
}
void toggleOff(void) {
my_pwm = 0;
timer.attach_us(toggleOn, off_delay);
}
// p_us = signal period in micro_seconds
// dc = signal duty-cycle (0.0 to 1.0)
void pwm_io(int p_us, float dc) {
timer.detach();
if ((p_us == 0) || (dc == 0)) {
my_pwm = 0;
return;
}
if (dc >= 1) {
my_pwm = 1;
return;
}
on_delay = (int)(p_us * dc);
off_delay = p_us - on_delay;
toggleOn();
}
int main() {
pwm_io(20000, 0.25); // 20ms - 25%
while(1) {
my_led = !my_led;
wait(0.5);
}
}