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 BVBCET by
Blink_Out.h
- Committer:
- adityap
- Date:
- 2015-11-25
- Revision:
- 0:e88292a7e64c
File content as of revision 0:e88292a7e64c:
#ifndef MBED_Blink_Out_H
#define MBED_Blink_Out_H
#include "mbed.h"
class Blink_Out {
public:
Blink_Out(PinName pin);
void out(int n);
private:
DigitalOut number;
};
#endif
