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: Adafruit_GFX_128x64 DS3231 PinDetect SDFileSystem USBDevice mbed RealtimeMath MODSERIAL
main.h@20:294eaeaf2ebb, 2014-06-05 (annotated)
- Committer:
- ellingjp
- Date:
- Thu Jun 05 20:06:41 2014 +0000
- Revision:
- 20:294eaeaf2ebb
- Parent:
- 18:06b718f8e6fd
- Child:
- 22:9350752f5414
Couple bug fixes;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ellingjp | 8:8430a5c0914c | 1 | #define SYNC_HOLD_TIME_MS 1000 |
| ellingjp | 8:8430a5c0914c | 2 | #define DEBOUNCE_TIME_MS 200 |
| ellingjp | 0:cd1fe4f0ed39 | 3 | |
| ellingjp | 20:294eaeaf2ebb | 4 | #define USE_OLED |
| ellingjp | 8:8430a5c0914c | 5 | #ifdef USE_OLED |
| ellingjp | 0:cd1fe4f0ed39 | 6 | #define OLED_SETCURS(xpos,ypos) oled.setCursor(xpos,ypos); |
| ellingjp | 0:cd1fe4f0ed39 | 7 | #define OLED_CLEAR() oled.clearDisplay(); |
| ellingjp | 0:cd1fe4f0ed39 | 8 | |
| ellingjp | 20:294eaeaf2ebb | 9 | #define OLED_DRAWPIXEL(x,y,color) oled.drawPixel(x, y, color); |
| ellingjp | 20:294eaeaf2ebb | 10 | |
| ellingjp | 0:cd1fe4f0ed39 | 11 | #define OLED_PRINT(x) oled.printf("%s", x); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 12 | #define OLED_PRINTF(x,y) oled.printf(x, y); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 13 | #define OLED_PRINTLN(x) oled.printf("%s\r\n", x); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 14 | #define OLED_PRINTLNF(x,y) oled.printf(x,y); oled.printf("\r\n"); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 15 | #define OLED_PRINTR(x) oled.printf("%s\r",x); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 16 | #define OLED_PRINTFR(x,y) oled.printf(x,y); oled.printf("\r"); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 17 | |
| ellingjp | 0:cd1fe4f0ed39 | 18 | // Specify position |
| ellingjp | 0:cd1fe4f0ed39 | 19 | #define OLED_PRINTP(x,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf("%s", x); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 20 | #define OLED_PRINTPF(x,y,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf(x, y); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 21 | #define OLED_PRINTPLN(x,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf("%s\r\n", x); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 22 | #define OLED_PRINTPLNF(x,y,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf(x,y); oled.printf("\r\n"); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 23 | #define OLED_PRINTPR(x,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf("%s\r",x); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 24 | #define OLED_PRINTPFR(x,y,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf(x,y); oled.printf("\r"); oled.display(); |
| ellingjp | 0:cd1fe4f0ed39 | 25 | #else |
| ellingjp | 0:cd1fe4f0ed39 | 26 | #define OLED_SETCURS(xpos,ypos) |
| briggsa | 18:06b718f8e6fd | 27 | #define OLED_CLEAR() |
| briggsa | 18:06b718f8e6fd | 28 | |
| ellingjp | 20:294eaeaf2ebb | 29 | #define OLED_DRAWPIXEL(x, y, color) |
| ellingjp | 20:294eaeaf2ebb | 30 | |
| ellingjp | 0:cd1fe4f0ed39 | 31 | #define OLED_PRINT(x) |
| ellingjp | 0:cd1fe4f0ed39 | 32 | #define OLED_PRINTF(x,y) |
| ellingjp | 0:cd1fe4f0ed39 | 33 | #define OLED_PRINTLN(x) |
| ellingjp | 0:cd1fe4f0ed39 | 34 | #define OLED_PRINTLNF(x,y) |
| ellingjp | 0:cd1fe4f0ed39 | 35 | #define OLED_PRINTR(x) |
| ellingjp | 0:cd1fe4f0ed39 | 36 | #define OLED_PRINTFR(x,y) |
| ellingjp | 0:cd1fe4f0ed39 | 37 | |
| ellingjp | 0:cd1fe4f0ed39 | 38 | // Specify position |
| ellingjp | 0:cd1fe4f0ed39 | 39 | #define OLED_PRINTP(x,xpos,ypos) |
| ellingjp | 0:cd1fe4f0ed39 | 40 | #define OLED_PRINTPF(x,y,xpos,ypos) |
| ellingjp | 0:cd1fe4f0ed39 | 41 | #define OLED_PRINTPLN(x,xpos,ypos) |
| ellingjp | 0:cd1fe4f0ed39 | 42 | #define OLED_PRINTPLNF(x,y,xpos,ypos) |
| ellingjp | 0:cd1fe4f0ed39 | 43 | #define OLED_PRINTPR(x,xpos,ypos) |
| ellingjp | 0:cd1fe4f0ed39 | 44 | #define OLED_PRINTPFR(x,y,xpos,ypos) |
| ellingjp | 0:cd1fe4f0ed39 | 45 | #endif |