List

 1#include <ItemWidget.h>
 2#include <LcdMenu.h>
 3#include <MenuScreen.h>
 4#include <display/LiquidCrystal_I2CAdapter.h>
 5#include <input/KeyboardAdapter.h>
 6#include <renderer/CharacterDisplayRenderer.h>
 7#include <widget/WidgetList.h>
 8
 9#define LCD_ROWS 2
10#define LCD_COLS 16
11
12std::vector<const char*> colors = {"Red", "Green", "Blue", "Orange", "Aqua", "Yellow", "Purple", "Pink"};
13std::vector<uint8_t> nums = {5, 7, 9, 12, 32};
14
15// Initialize the main menu items
16// clang-format off
17MENU_SCREEN(mainScreen, mainItems,
18    ITEM_BASIC("List demo"),
19    ITEM_WIDGET(
20        "Color",
21        [](const uint8_t color) { Serial.println(colors[color]); },
22        WIDGET_LIST(colors, 0, "%s", 0, true)),
23    ITEM_WIDGET(
24        "Num",
25        [](const uint8_t num) { Serial.println(nums[num]); },
26        WIDGET_LIST(nums, 0, "%d", 0, true)),
27    ITEM_BASIC("Example"));
28// clang-format on
29
30// Construct the LcdMenu
31LiquidCrystal_I2C lcd(0x27, LCD_COLS, LCD_ROWS);
32CharacterDisplayRenderer renderer(new LiquidCrystal_I2CAdapter(&lcd), LCD_COLS, LCD_ROWS);
33LcdMenu menu(renderer);
34KeyboardAdapter keyboard(&menu, &Serial);
35
36void setup() {
37    Serial.begin(9600);
38    renderer.begin();
39    menu.setScreen(mainScreen);
40}
41
42void loop() {
43    keyboard.observe();
44}