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
PollSwitch/PollSwitch.h
- Committer:
- pspatel321
- Date:
- 2014-10-25
- Revision:
- 17:c9ce210f6654
- Parent:
- 12:e0adb697fcdb
File content as of revision 17:c9ce210f6654:
#ifndef _FILE_POLLSWITCH_H
#define _FILE_POLLSWITCH_H
#include "LPCDigitalIn.h"
class PollSwitch{
public:
PollSwitch();
// Returns new state, updates last known
uint16_t poll();
// Stores the last known state
uint16_t switchState;
};
#endif
