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.
Fork of ele350 by
LedPulse.cpp
- Committer:
- GGHHHH
- Date:
- 2016-02-23
- Revision:
- 65:9dbee72e3e6e
- Parent:
- 19:af24a70c8ce5
File content as of revision 65:9dbee72e3e6e:
#include "mbed.h"
#include "LedPulse.h"
#include "Led.h"
LedPulse::LedPulse(Led* led, float delay)
{
this->led = led;
this->delay = delay;
}
void LedPulse::play()
{
this->led->On();
wait(this->delay);
this->led->Off();
}
