LCDGFX LCD display driver  1.1.5
This library is developed to control SSD1306/SSD1325/SSD1327/SSD1331/SSD1351/IL9163/PCD8554 RGB i2c/spi LED displays
menu.h File Reference
#include "nano_gfx_types.h"
#include "canvas/point.h"
#include "canvas/rect.h"
#include "canvas/font.h"
Include dependency graph for menu.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  LcdGfxMenu
 

Macros

#define lcd_gfx_min(x, y)   ((x) < (y) ? (x) : (y))
 
#define lcd_gfx_max(x, y)   ((x) > (y) ? (x) : (y))
 

Detailed Description

Menu object definition

Definition in file menu.h.

Macro Definition Documentation

◆ lcd_gfx_max

#define lcd_gfx_max (   x,
 
)    ((x) > (y) ? (x) : (y))

Custom max function

Definition at line 43 of file menu.h.

◆ lcd_gfx_min

#define lcd_gfx_min (   x,
 
)    ((x) < (y) ? (x) : (y))

Custom min function

Definition at line 38 of file menu.h.