Skip to content

Commit

Permalink
feat: all menus are ready without callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Otrebor671 committed Aug 15, 2024
1 parent 1351381 commit b756de2
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions firmware/main/modules/menus_module/menus.h
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,81 @@ menu_t menus[] = {{.display_name = "Must Not See This",
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "Display",
.menu_idx = MENU_SETTINGS_DISPLAY_2,
.parent_idx = MENU_SETTINGS_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "File Manager",
.menu_idx = MENU_FILE_MANAGER_2,
.parent_idx = MENU_SETTINGS_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "Local",
.menu_idx = MENU_FILE_MANAGER_LOCAL_2,
.parent_idx = MENU_FILE_MANAGER_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "Web",
.menu_idx = MENU_FILE_MANAGER_WEB_2,
.parent_idx = MENU_FILE_MANAGER_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "System",
.menu_idx = MENU_SETTINGS_SYSTEM_2,
.parent_idx = MENU_SETTINGS_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "Time zone",
.menu_idx = MENU_SETTINGS_TIME_ZONE_2,
.parent_idx = MENU_SETTINGS_SYSTEM_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "WiFi",
.menu_idx = MENU_SETTINGS_WIFI_2,
.parent_idx = MENU_SETTINGS_SYSTEM_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "SD card",
.menu_idx = MENU_SETTINGS_SD_CARD_2,
.parent_idx = MENU_SETTINGS_SYSTEM_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "Info",
.menu_idx = MENU_SETTINGS_SD_CARD_INFO_2,
.parent_idx = MENU_SETTINGS_SD_CARD_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "Check Format",
.menu_idx = MENU_SETTINGS_SD_CARD_FORMAT_2,
.parent_idx = MENU_SETTINGS_SD_CARD_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true},
{.display_name = "Stealth Mode",
.menu_idx = MENU_STEALTH_MODE_2,
.parent_idx = MENU_SETTINGS_2,
.input_cb = NULL,
.on_enter_cb = NULL,
.on_exit_cb = NULL,
.is_visible = true}};

0 comments on commit b756de2

Please sign in to comment.