LiquidMenu  1.3.0
Menu creation Arduino library for LCDs, wraps LiquidCrystal.
LiquidMenu_config.h
Go to the documentation of this file.
1 
9 #pragma once
10 
12 #define I2C false
13 
14 const uint8_t MAX_VARIABLES = 5;
16 
18 const uint8_t MAX_FUNCTIONS = 8;
19 
21 const uint8_t MAX_LINES = 12;
22 
24 const uint8_t MAX_SCREENS = 14;
25 
27 const uint8_t MAX_MENUS = 8;
28 
29 // Turns the debugging messages on or off.
30 #define LIQUIDMENU_DEBUG false
const uint8_t MAX_SCREENS
Configures the number of available screens per menu.
Definition: LiquidMenu_config.h:24
const uint8_t MAX_VARIABLES
Configures the number of available variables per line.
Definition: LiquidMenu_config.h:15
const uint8_t MAX_LINES
Configures the number of available lines per screen.
Definition: LiquidMenu_config.h:21
const uint8_t MAX_MENUS
Configures the number of available menus per menus system.
Definition: LiquidMenu_config.h:27
const uint8_t MAX_FUNCTIONS
Configures the number of available functions per line.
Definition: LiquidMenu_config.h:18