oled

Dependents:   rsm_ver_2_1_3oled

Committer:
mijimy
Date:
Sun Aug 27 06:12:47 2017 +0000
Revision:
0:847d62ecf52e
oled;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mijimy 0:847d62ecf52e 1
mijimy 0:847d62ecf52e 2 extern void draw_Line(int x1, int y1, int x2, int y2, uint16_t fg_color, uint16_t bg_color);
mijimy 0:847d62ecf52e 3
mijimy 0:847d62ecf52e 4 extern void draw_Circle(int xc, int yc, int r, uint16_t fg_color, uint16_t bg_color);
mijimy 0:847d62ecf52e 5
mijimy 0:847d62ecf52e 6 extern void draw_Rectangle(int x0, int y0, int x1, int y1, uint16_t fg_color, uint16_t bg_color);
mijimy 0:847d62ecf52e 7
mijimy 0:847d62ecf52e 8 extern void fill_Rectangle(int x0, int y0, int x1, int y1, uint16_t fg_color, uint16_t bg_color);
mijimy 0:847d62ecf52e 9
mijimy 0:847d62ecf52e 10 extern void draw_Triangle(int x0, int y0, int x1, int y1, int x2, int y2, uint16_t fg_color, uint16_t bg_color);
mijimy 0:847d62ecf52e 11
mijimy 0:847d62ecf52e 12