
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
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
Diff: uOLEDLIB.h
- Revision:
- 5:791713e36c37
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uOLEDLIB.h Sat Mar 13 09:16:08 2021 +0000 @@ -0,0 +1,17 @@ +#include "GSGCdef.h" // commandes uOLED + +unsigned char ack(void); +void couleur_fond(int color); +void rectangle(unsigned char x1,unsigned char y1,unsigned char x2,unsigned char y2,unsigned int color); +void cercle(unsigned char x,unsigned char y,unsigned char radius,unsigned int color); +void triangle(unsigned char x1,unsigned char y1,unsigned char x2,unsigned char y2,unsigned char x3,unsigned char y3,unsigned int color); +void ligne(unsigned char x1,unsigned char y1,unsigned char x2,unsigned char y2,unsigned int color); +void opaque(unsigned char mode); +void pixel(unsigned char x1,unsigned char y1,unsigned int color); +void penSize(unsigned char size); +void afftexte_graphic(char x, char y, char font,int color , char w, char h, char * mess); +void afftexte_text(char x,char y,char font,int color,char* mess); +void affiche_image(char x, char y, char w, char h, char color, unsigned long ad); +void affiche_video(char x, char y, char w, char h, char color, char delay, int frames,unsigned long ad); +void efface(void); +void inituOLED(void);