SSD1306 OLED display driver
1.4.0
This library is developed to control SSD1306 i2c/spi OLED display
|
#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 } |
Basic structures of nano gfx library
Definition in file nano_gfx_types.h.
#define max | ( | a, | |
b | |||
) | ((a)>(b)?(a):(b)) |
Macros returning maximum of 2 numbers
Definition at line 40 of file nano_gfx_types.h.
#define min | ( | a, | |
b | |||
) | ((a)<(b)?(a):(b)) |
Macros returning minimum of 2 numbers
Definition at line 35 of file nano_gfx_types.h.
typedef void(* InitFunction) () |
Pointer type to LCD display initialization function
Definition at line 44 of file nano_gfx_types.h.
enum EFontStyle |
Supported font styles
Definition at line 47 of file nano_gfx_types.h.