Demo for u0LED128-G1 4D Systems 128x128 Graphic Display This simple demo demonstrates the use of graphical display controls. The library construction does not use a C ++ class. Christian Dupaty 03/2021

https://os.mbed.com/media/uploads/cdupaty/uoled-128-g1.jpg

Demo for u0LED128-G1 4D Systems 128x128 Graphic Display This simple demo demonstrates the use of graphical display controls. The library construction does not use a C ++ class.

Data Sheet : https://www.farnell.com/datasheets/356896.pdf

Ref 4DSystems for G2 version : https://4dsystems.com.au/uoled-128-g2

Committer:
cdupaty
Date:
Sat Mar 13 09:16:08 2021 +0000
Revision:
5:791713e36c37
Demo for u0LED128-G1; 4D Systems 128x128 Graphic Display; This simple demo demonstrates the use of graphical display controls.; The library construction does not use a C ++ class.; Christian Dupaty; 03/2021

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cdupaty 5:791713e36c37 1 #include "GSGCdef.h" // commandes uOLED
cdupaty 5:791713e36c37 2
cdupaty 5:791713e36c37 3 unsigned char ack(void);
cdupaty 5:791713e36c37 4 void couleur_fond(int color);
cdupaty 5:791713e36c37 5 void rectangle(unsigned char x1,unsigned char y1,unsigned char x2,unsigned char y2,unsigned int color);
cdupaty 5:791713e36c37 6 void cercle(unsigned char x,unsigned char y,unsigned char radius,unsigned int color);
cdupaty 5:791713e36c37 7 void triangle(unsigned char x1,unsigned char y1,unsigned char x2,unsigned char y2,unsigned char x3,unsigned char y3,unsigned int color);
cdupaty 5:791713e36c37 8 void ligne(unsigned char x1,unsigned char y1,unsigned char x2,unsigned char y2,unsigned int color);
cdupaty 5:791713e36c37 9 void opaque(unsigned char mode);
cdupaty 5:791713e36c37 10 void pixel(unsigned char x1,unsigned char y1,unsigned int color);
cdupaty 5:791713e36c37 11 void penSize(unsigned char size);
cdupaty 5:791713e36c37 12 void afftexte_graphic(char x, char y, char font,int color , char w, char h, char * mess);
cdupaty 5:791713e36c37 13 void afftexte_text(char x,char y,char font,int color,char* mess);
cdupaty 5:791713e36c37 14 void affiche_image(char x, char y, char w, char h, char color, unsigned long ad);
cdupaty 5:791713e36c37 15 void affiche_video(char x, char y, char w, char h, char color, char delay, int frames,unsigned long ad);
cdupaty 5:791713e36c37 16 void efface(void);
cdupaty 5:791713e36c37 17 void inituOLED(void);