Richard Kuo
/
NTOUEE-mbed-I2C_MPU6500_LCD
mbed I2C IMU+LCD
Diff: draw2D.h
- Revision:
- 2:6b9ce9b7f08a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/draw2D.h Thu Oct 20 13:26:43 2016 +0000 @@ -0,0 +1,9 @@ + +class Draw2D { + public: + void drawLine(int x1, int y1, int x2, int y2, int fgColor, int bgColor); + void drawCircle(int xc, int yc, int r, int fgColor, int bgColor); + void drawRectangle(int x0, int y0, int x1, int y1, int fgColor, int bgColor); + void drawTriangle(int x0, int y0, int x1, int y1, int x2, int y2, int fgColor, int bgColor); +}; +