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.
switch.h@0:8ee38453bad9, 2016-03-13 (annotated)
- Committer:
- exopiped
- Date:
- Sun Mar 13 01:12:40 2016 +0000
- Revision:
- 0:8ee38453bad9
Rebuilt from original code from April 2014
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| exopiped | 0:8ee38453bad9 | 1 | /* |
| exopiped | 0:8ee38453bad9 | 2 | * jstick.h -- header for jstick.cpp, which reads the |
| exopiped | 0:8ee38453bad9 | 3 | * joystick pins, and provides debounced version |
| exopiped | 0:8ee38453bad9 | 4 | * of the pins to js_read() caller. |
| exopiped | 0:8ee38453bad9 | 5 | */ |
| exopiped | 0:8ee38453bad9 | 6 | #ifndef JSTICK_H |
| exopiped | 0:8ee38453bad9 | 7 | #define JSTICK_H |
| exopiped | 0:8ee38453bad9 | 8 | void js_init(void); |
| exopiped | 0:8ee38453bad9 | 9 | bool js_debounce(void); |
| exopiped | 0:8ee38453bad9 | 10 | #endif |