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
Fork of myiot by
include/Draw2D.h
- Committer:
- ittraining
- Date:
- 2016-06-22
- Revision:
- 2:56d35caf6a03
- Parent:
- 0:94c1a94c5a47
File content as of revision 2:56d35caf6a03:
extern void draw_Line(int x1, int y1, int x2, int y2, uint16_t fg_color, uint16_t bg_color);
extern void draw_Circle(int xc, int yc, int r, uint16_t fg_color, uint16_t bg_color);
extern void draw_Rectangle(int x0, int y0, int x1, int y1, uint16_t fg_color, uint16_t bg_color);
extern void fill_Rectangle(int x0, int y0, int x1, int y1, uint16_t fg_color, uint16_t bg_color);
extern void draw_Triangle(int x0, int y0, int x1, int y1, int x2, int y2, uint16_t fg_color, uint16_t bg_color);
