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 blink_LED by
blink.h
- Committer:
- 2bv14ei014
- Date:
- 2016-11-11
- Revision:
- 1:7a062c1b79dd
- Parent:
- 0:d1d2410ad028
File content as of revision 1:7a062c1b79dd:
#ifndef MBED_BLINKER_H
#define MBED_BLINKER_H
#include "mbed.h"
class Blinker {
public:
Blinker (PinName pin);
void Blink(int n);
private:
DigitalOut LED1,LED2;
};
#endif
