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.h
00001 #ifndef _FILE_POLLSWITCH_H 00002 #define _FILE_POLLSWITCH_H 00003 00004 #include "mbed.h" 00005 00006 class PollSwitch{ 00007 public: 00008 PollSwitch(DigitalIn *sw, int numSwitches); 00009 00010 // Returns new state, 0 means all Closed, 1=first sense line (fuse), 12=last (TSMS) 00011 char poll(); 00012 00013 private: 00014 DigitalIn *sw; 00015 int numSwitches; 00016 }; 00017 #endif
Generated on Fri Jul 15 2022 06:07:18 by
1.7.2
