SSD1306 OLED display driver  1.4.0
This library is developed to control SSD1306 i2c/spi OLED display
Classes | Macros | Typedefs | Enumerations
nano_gfx_types.h File Reference
#include <stdint.h>

Go to the source code of this file.

Classes

struct  SFixedFontInfo
 
struct  SSD1306_RECT
 
struct  SPRITE
 

Macros

#define min(a, b)   ((a)<(b)?(a):(b))
 
#define max(a, b)   ((a)>(b)?(a):(b))
 

Typedefs

typedef void(* InitFunction) ()
 
typedef struct SPRITE SPRITE
 

Enumerations

enum  EFontStyle { STYLE_NORMAL, STYLE_BOLD, STYLE_ITALIC }
 

Detailed Description

Basic structures of nano gfx library

Definition in file nano_gfx_types.h.

Macro Definition Documentation

◆ max

#define max (   a,
 
)    ((a)>(b)?(a):(b))

Macros returning maximum of 2 numbers

Definition at line 40 of file nano_gfx_types.h.

◆ min

#define min (   a,
 
)    ((a)<(b)?(a):(b))

Macros returning minimum of 2 numbers

Definition at line 35 of file nano_gfx_types.h.

Typedef Documentation

◆ InitFunction

typedef void(* InitFunction) ()

Pointer type to LCD display initialization function

Definition at line 44 of file nano_gfx_types.h.

◆ SPRITE

typedef struct SPRITE SPRITE

SPRITE structure represents logical graphics object

Enumeration Type Documentation

◆ EFontStyle

enum EFontStyle

Supported font styles

Definition at line 47 of file nano_gfx_types.h.