mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 14:38:35 -07:00
Add icons to esubghz chat menu --nobuild
This commit is contained in:
BIN
applications/external/esubghz_chat/assets/hex_10px.png
vendored
Normal file
BIN
applications/external/esubghz_chat/assets/hex_10px.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 171 B |
@@ -76,20 +76,30 @@ void scene_on_enter_key_menu(void* context) {
|
|||||||
menu_add_item(
|
menu_add_item(
|
||||||
state->menu,
|
state->menu,
|
||||||
"No encryption",
|
"No encryption",
|
||||||
NULL,
|
&I_chat_10px,
|
||||||
ESubGhzChatKeyMenuItems_NoEncryption,
|
ESubGhzChatKeyMenuItems_NoEncryption,
|
||||||
key_menu_cb,
|
key_menu_cb,
|
||||||
state);
|
state);
|
||||||
menu_add_item(
|
menu_add_item(
|
||||||
state->menu, "Password", NULL, ESubGhzChatKeyMenuItems_Password, key_menu_cb, state);
|
state->menu,
|
||||||
|
"Password",
|
||||||
|
&I_keyboard_10px,
|
||||||
|
ESubGhzChatKeyMenuItems_Password,
|
||||||
|
key_menu_cb,
|
||||||
|
state);
|
||||||
menu_add_item(
|
menu_add_item(
|
||||||
state->menu, "Hex Key", NULL, ESubGhzChatKeyMenuItems_HexKey, key_menu_cb, state);
|
state->menu, "Hex Key", &I_hex_10px, ESubGhzChatKeyMenuItems_HexKey, key_menu_cb, state);
|
||||||
menu_add_item(
|
menu_add_item(
|
||||||
state->menu, "Generate Key", NULL, ESubGhzChatKeyMenuItems_GenKey, key_menu_cb, state);
|
state->menu,
|
||||||
|
"Generate Key",
|
||||||
|
&I_u2f_10px,
|
||||||
|
ESubGhzChatKeyMenuItems_GenKey,
|
||||||
|
key_menu_cb,
|
||||||
|
state);
|
||||||
menu_add_item(
|
menu_add_item(
|
||||||
state->menu,
|
state->menu,
|
||||||
"Read Key from NFC",
|
"Read Key from NFC",
|
||||||
NULL,
|
&I_Nfc_10px,
|
||||||
ESubGhzChatKeyMenuItems_ReadKeyFromNfc,
|
ESubGhzChatKeyMenuItems_ReadKeyFromNfc,
|
||||||
key_menu_cb,
|
key_menu_cb,
|
||||||
state);
|
state);
|
||||||
|
|||||||
Reference in New Issue
Block a user