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@39:ddf38df9699e, 2015-02-11 (annotated)
- Committer:
- pspatel321
- Date:
- Wed Feb 11 23:09:57 2015 +0000
- Revision:
- 39:ddf38df9699e
- Parent:
- 36:0afc0fc8f86b
Updated CAN IDs for datalogging. Changed profile encoding.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| pspatel321 | 30:91af74a299e1 | 1 | #ifndef _FILE_POLLSWITCH_H |
| pspatel321 | 30:91af74a299e1 | 2 | #define _FILE_POLLSWITCH_H |
| pspatel321 | 30:91af74a299e1 | 3 | |
| pspatel321 | 36:0afc0fc8f86b | 4 | #include "mbed.h" |
| pspatel321 | 30:91af74a299e1 | 5 | |
| pspatel321 | 30:91af74a299e1 | 6 | class PollSwitch{ |
| pspatel321 | 30:91af74a299e1 | 7 | public: |
| pspatel321 | 36:0afc0fc8f86b | 8 | PollSwitch(DigitalIn *sw, int numSwitches); |
| pspatel321 | 30:91af74a299e1 | 9 | |
| pspatel321 | 30:91af74a299e1 | 10 | // Returns new state, 0 means all Closed, 1=first sense line (fuse), 12=last (TSMS) |
| pspatel321 | 30:91af74a299e1 | 11 | char poll(); |
| pspatel321 | 30:91af74a299e1 | 12 | |
| pspatel321 | 30:91af74a299e1 | 13 | private: |
| pspatel321 | 36:0afc0fc8f86b | 14 | DigitalIn *sw; |
| pspatel321 | 30:91af74a299e1 | 15 | int numSwitches; |
| pspatel321 | 30:91af74a299e1 | 16 | }; |
| pspatel321 | 30:91af74a299e1 | 17 | #endif |
