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 DmTftLibrary
src/buttonhandlers.h@1:a1d80c69e1f0, 2018-12-06 (annotated)
- Committer:
- ofrasier
- Date:
- Thu Dec 06 23:15:21 2018 +0000
- Revision:
- 1:a1d80c69e1f0
Initial commit
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ofrasier | 1:a1d80c69e1f0 | 1 | #ifndef BUTTONHANDLERS_H |
| ofrasier | 1:a1d80c69e1f0 | 2 | #define BUTTONHANDLERS_H |
| ofrasier | 1:a1d80c69e1f0 | 3 | |
| ofrasier | 1:a1d80c69e1f0 | 4 | #include "ui.h" |
| ofrasier | 1:a1d80c69e1f0 | 5 | |
| ofrasier | 1:a1d80c69e1f0 | 6 | extern Mandelbrot *brot; |
| ofrasier | 1:a1d80c69e1f0 | 7 | |
| ofrasier | 1:a1d80c69e1f0 | 8 | void changeMaxIters(Button *self, DmTftBase *screen); |
| ofrasier | 1:a1d80c69e1f0 | 9 | |
| ofrasier | 1:a1d80c69e1f0 | 10 | void changeKernel(Button *self, DmTftBase *screen); |
| ofrasier | 1:a1d80c69e1f0 | 11 | |
| ofrasier | 1:a1d80c69e1f0 | 12 | void reDraw(Button *self, DmTftBase *screen); |
| ofrasier | 1:a1d80c69e1f0 | 13 | |
| ofrasier | 1:a1d80c69e1f0 | 14 | void resetView(Button *self, DmTftBase *screen); |
| ofrasier | 1:a1d80c69e1f0 | 15 | |
| ofrasier | 1:a1d80c69e1f0 | 16 | void zoomOut(Button *self, DmTftBase *screen); |
| ofrasier | 1:a1d80c69e1f0 | 17 | |
| ofrasier | 1:a1d80c69e1f0 | 18 | #endif |