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 N5110 ShiftReg PinDetect
State.h@1:0cfe2255092a, 2015-04-28 (annotated)
- Committer:
- Siriagus
- Date:
- Tue Apr 28 12:46:37 2015 +0000
- Revision:
- 1:0cfe2255092a
- Child:
- 4:d6661b976359
Simple Menu test - Uses PinDetect for debouncing.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Siriagus | 1:0cfe2255092a | 1 | #ifndef STATE_H |
Siriagus | 1:0cfe2255092a | 2 | #define STATE_H |
Siriagus | 1:0cfe2255092a | 3 | |
Siriagus | 1:0cfe2255092a | 4 | class State |
Siriagus | 1:0cfe2255092a | 5 | { |
Siriagus | 1:0cfe2255092a | 6 | public: |
Siriagus | 1:0cfe2255092a | 7 | virtual void run() {}; |
Siriagus | 1:0cfe2255092a | 8 | }; |
Siriagus | 1:0cfe2255092a | 9 | |
Siriagus | 1:0cfe2255092a | 10 | #endif |