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.
Dependents: KrystianWawrzynekMU2020
Blinker.h
- Committer:
- wawrzynek
- Date:
- 2020-11-15
- Revision:
- 0:fe04c98c6eef
File content as of revision 0:fe04c98c6eef:
#ifndef MBED_BLINKER_H
#define MBED_BLINKER_H
#include "mbed.h"
class Blinker
{
public:
Blinker(PinName pin);
void blink(int n);
private:
DigitalOut _pin;
};
#endif