CSE477 / swimate_v2

Dependencies:   Adafruit_GFX_128x64 DS3231 PinDetect SDFileSystem USBDevice mbed RealtimeMath MODSERIAL

Committer:
ellingjp
Date:
Wed May 14 03:14:57 2014 +0000
Revision:
5:7c2e7d657716
Parent:
0:cd1fe4f0ed39
Child:
6:3b9b4e2c29bf
rtos integration

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ellingjp 0:cd1fe4f0ed39 1 #define OLED_DEBUG
ellingjp 0:cd1fe4f0ed39 2 #ifdef OLED_DEBUG
ellingjp 0:cd1fe4f0ed39 3 #define OLED_SETCURS(xpos,ypos) oled.setCursor(xpos,ypos);
ellingjp 0:cd1fe4f0ed39 4 #define OLED_CLEAR() oled.clearDisplay();
ellingjp 0:cd1fe4f0ed39 5
ellingjp 0:cd1fe4f0ed39 6 #define OLED_PRINT(x) oled.printf("%s", x); oled.display();
ellingjp 0:cd1fe4f0ed39 7 #define OLED_PRINTF(x,y) oled.printf(x, y); oled.display();
ellingjp 0:cd1fe4f0ed39 8 #define OLED_PRINTLN(x) oled.printf("%s\r\n", x); oled.display();
ellingjp 0:cd1fe4f0ed39 9 #define OLED_PRINTLNF(x,y) oled.printf(x,y); oled.printf("\r\n"); oled.display();
ellingjp 0:cd1fe4f0ed39 10 #define OLED_PRINTR(x) oled.printf("%s\r",x); oled.display();
ellingjp 0:cd1fe4f0ed39 11 #define OLED_PRINTFR(x,y) oled.printf(x,y); oled.printf("\r"); oled.display();
ellingjp 0:cd1fe4f0ed39 12
ellingjp 0:cd1fe4f0ed39 13 // Specify position
ellingjp 0:cd1fe4f0ed39 14 #define OLED_PRINTP(x,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf("%s", x); oled.display();
ellingjp 0:cd1fe4f0ed39 15 #define OLED_PRINTPF(x,y,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf(x, y); oled.display();
ellingjp 0:cd1fe4f0ed39 16 #define OLED_PRINTPLN(x,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf("%s\r\n", x); oled.display();
ellingjp 0:cd1fe4f0ed39 17 #define OLED_PRINTPLNF(x,y,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf(x,y); oled.printf("\r\n"); oled.display();
ellingjp 0:cd1fe4f0ed39 18 #define OLED_PRINTPR(x,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf("%s\r",x); oled.display();
ellingjp 0:cd1fe4f0ed39 19 #define OLED_PRINTPFR(x,y,xpos,ypos) oled.setCursor(xpos,ypos); oled.printf(x,y); oled.printf("\r"); oled.display();
ellingjp 0:cd1fe4f0ed39 20 #else
ellingjp 0:cd1fe4f0ed39 21 #define OLED_SETCURS(xpos,ypos)
ellingjp 0:cd1fe4f0ed39 22
ellingjp 0:cd1fe4f0ed39 23 #define OLED_PRINT(x)
ellingjp 0:cd1fe4f0ed39 24 #define OLED_PRINTF(x,y)
ellingjp 0:cd1fe4f0ed39 25 #define OLED_PRINTLN(x)
ellingjp 0:cd1fe4f0ed39 26 #define OLED_PRINTLNF(x,y)
ellingjp 0:cd1fe4f0ed39 27 #define OLED_PRINTR(x)
ellingjp 0:cd1fe4f0ed39 28 #define OLED_PRINTFR(x,y)
ellingjp 0:cd1fe4f0ed39 29
ellingjp 0:cd1fe4f0ed39 30 // Specify position
ellingjp 0:cd1fe4f0ed39 31 #define OLED_PRINTP(x,xpos,ypos)
ellingjp 0:cd1fe4f0ed39 32 #define OLED_PRINTPF(x,y,xpos,ypos)
ellingjp 0:cd1fe4f0ed39 33 #define OLED_PRINTPLN(x,xpos,ypos)
ellingjp 0:cd1fe4f0ed39 34 #define OLED_PRINTPLNF(x,y,xpos,ypos)
ellingjp 0:cd1fe4f0ed39 35 #define OLED_PRINTPR(x,xpos,ypos)
ellingjp 0:cd1fe4f0ed39 36 #define OLED_PRINTPFR(x,y,xpos,ypos)
ellingjp 0:cd1fe4f0ed39 37 #endif