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.
graphic.h@0:582c20f27326, 2012-03-05 (annotated)
- Committer:
- fblanc
- Date:
- Mon Mar 05 11:48:28 2012 +0000
- Revision:
- 0:582c20f27326
v1.0
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| fblanc | 0:582c20f27326 | 1 | // Wy�wietlacz graficzny ze sterownikiem S6B0724 |
| fblanc | 0:582c20f27326 | 2 | // sterowanie w jezyku C od podstaw |
| fblanc | 0:582c20f27326 | 3 | // Plik : graphic.h |
| fblanc | 0:582c20f27326 | 4 | // Autor : Rados�aw Kwiecie� |
| fblanc | 0:582c20f27326 | 5 | |
| fblanc | 0:582c20f27326 | 6 | void GLCD_Rectangle(unsigned char x, unsigned char y, unsigned char b, unsigned char a , char color); |
| fblanc | 0:582c20f27326 | 7 | void GLCD_Circle(unsigned char cx, unsigned char cy ,unsigned char radius , char color); |
| fblanc | 0:582c20f27326 | 8 | void GLCD_Line(int X1, int Y1,int X2,int Y2 , char color); |