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.
Dependencies: mbed CANBuffer Watchdog MODSERIAL mbed-rtos xbeeRelay IAP
Fork of SystemManagement by
Libs/PollSwitch/PollSwitch.h
- Committer:
- pspatel321
- Date:
- 2015-01-22
- Revision:
- 36:0afc0fc8f86b
- Parent:
- 30:91af74a299e1
File content as of revision 36:0afc0fc8f86b:
#ifndef _FILE_POLLSWITCH_H
#define _FILE_POLLSWITCH_H
#include "mbed.h"
class PollSwitch{
public:
PollSwitch(DigitalIn *sw, int numSwitches);
// Returns new state, 0 means all Closed, 1=first sense line (fuse), 12=last (TSMS)
char poll();
private:
DigitalIn *sw;
int numSwitches;
};
#endif
