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.
indicator.h
- Committer:
- YTvW
- Date:
- 2016-11-29
- Revision:
- 3:11ab070a3edb
- Parent:
- 2:ff5abf6d887c
File content as of revision 3:11ab070a3edb:
#ifndef MBED_INDICATOR_H
#define MBED_INDICATOR_H
#include "mbed.h"
#include "rtos.h"
class Indicator
{
public:
Indicator(PinName pin);
void indicator_thread();
private:
int situation;
int ledstatus;
DigitalOut _pin;
void SetSituation();
void Status(int situation,int ledstatus);
void SlowFlash(int situation,int ledstatus);
void FastFlash(int situation,int ledstatus);
};
#endif