├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── discuss-issue.md │ ├── feature_request.md │ ├── in-progress.md │ └── need-help.md ├── actions │ └── docker │ │ └── action.yml ├── assets │ ├── Born2bSportyV2.ttf │ └── latest-firmware-template.png ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── build_toolchain.yml │ ├── check_submodules.yml │ ├── lint_c.yml │ ├── lint_python.yml │ └── reindex.yml ├── .gitignore ├── .gitmodules ├── Brewfile ├── CODE_OF_CONDUCT.md ├── CODING_STYLE.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── ReadMe.md ├── RoadMap.md ├── applications ├── ReadMe.md ├── about │ └── about.c ├── accessor │ ├── accessor.cpp │ ├── accessor_app.cpp │ ├── accessor_app.h │ ├── accessor_event.h │ ├── accessor_view_manager.cpp │ ├── accessor_view_manager.h │ ├── helpers │ │ ├── wiegand.cpp │ │ └── wiegand.h │ └── scene │ │ ├── accessor_scene_generic.h │ │ ├── accessor_scene_start.cpp │ │ └── accessor_scene_start.h ├── applications.c ├── applications.h ├── applications.mk ├── archive │ ├── archive.c │ ├── archive.h │ ├── archive_i.h │ ├── helpers │ │ ├── archive_apps.c │ │ ├── archive_apps.h │ │ ├── archive_browser.c │ │ ├── archive_browser.h │ │ ├── archive_favorites.c │ │ ├── archive_favorites.h │ │ ├── archive_files.c │ │ └── archive_files.h │ ├── scenes │ │ ├── archive_scene.c │ │ ├── archive_scene.h │ │ ├── archive_scene_browser.c │ │ ├── archive_scene_config.h │ │ ├── archive_scene_delete.c │ │ └── archive_scene_rename.c │ └── views │ │ ├── archive_browser_view.c │ │ └── archive_browser_view.h ├── bad_usb │ ├── bad_usb_app.c │ ├── bad_usb_app.h │ ├── bad_usb_app_i.h │ ├── bad_usb_script.c │ ├── bad_usb_script.h │ ├── scenes │ │ ├── bad_usb_scene.c │ │ ├── bad_usb_scene.h │ │ ├── bad_usb_scene_config.h │ │ ├── bad_usb_scene_error.c │ │ ├── bad_usb_scene_file_select.c │ │ └── bad_usb_scene_work.c │ └── views │ │ ├── bad_usb_view.c │ │ └── bad_usb_view.h ├── bt │ ├── bt_cli.c │ ├── bt_debug_app │ │ ├── bt_debug_app.c │ │ ├── bt_debug_app.h │ │ └── views │ │ │ ├── bt_carrier_test.c │ │ │ ├── bt_carrier_test.h │ │ │ ├── bt_packet_test.c │ │ │ ├── bt_packet_test.h │ │ │ ├── bt_test.c │ │ │ ├── bt_test.h │ │ │ └── bt_test_types.h │ ├── bt_hid_app │ │ ├── bt_hid.c │ │ ├── bt_hid.h │ │ └── views │ │ │ ├── bt_hid_keynote.c │ │ │ ├── bt_hid_keynote.h │ │ │ ├── bt_hid_media.c │ │ │ └── bt_hid_media.h │ ├── bt_service │ │ ├── bt.c │ │ ├── bt.h │ │ ├── bt_api.c │ │ ├── bt_i.h │ │ ├── bt_keys_storage.c │ │ └── bt_keys_storage.h │ ├── bt_settings.c │ ├── bt_settings.h │ └── bt_settings_app │ │ ├── bt_settings_app.c │ │ ├── bt_settings_app.h │ │ └── scenes │ │ ├── bt_settings_scene.c │ │ ├── bt_settings_scene.h │ │ ├── bt_settings_scene_config.h │ │ ├── bt_settings_scene_forget_dev_confirm.c │ │ ├── bt_settings_scene_forget_dev_success.c │ │ └── bt_settings_scene_start.c ├── cli │ ├── cli.c │ ├── cli.h │ ├── cli_commands.c │ ├── cli_commands.h │ ├── cli_i.h │ ├── cli_vcp.c │ └── cli_vcp.h ├── crypto │ └── crypto_cli.c ├── debug_tools │ ├── blink_test.c │ ├── display_test │ │ ├── display_test.c │ │ ├── display_test.h │ │ ├── view_display_test.c │ │ └── view_display_test.h │ ├── keypad_test.c │ ├── text_box_test.c │ ├── uart_echo.c │ ├── usb_mouse.c │ ├── usb_test.c │ └── vibro_test.c ├── desktop │ ├── animations │ │ ├── animation_manager.c │ │ ├── animation_manager.h │ │ ├── animation_storage.c │ │ ├── animation_storage.h │ │ ├── animation_storage_i.h │ │ └── views │ │ │ ├── bubble_animation_view.c │ │ │ ├── bubble_animation_view.h │ │ │ ├── one_shot_animation_view.c │ │ │ └── one_shot_animation_view.h │ ├── desktop.c │ ├── desktop.h │ ├── desktop_i.h │ ├── desktop_settings │ │ ├── desktop_settings.h │ │ ├── desktop_settings_app.c │ │ ├── desktop_settings_app.h │ │ ├── scenes │ │ │ ├── desktop_settings_scene.c │ │ │ ├── desktop_settings_scene.h │ │ │ ├── desktop_settings_scene_config.h │ │ │ ├── desktop_settings_scene_favorite.c │ │ │ ├── desktop_settings_scene_i.h │ │ │ ├── desktop_settings_scene_pin_auth.c │ │ │ ├── desktop_settings_scene_pin_disable.c │ │ │ ├── desktop_settings_scene_pin_error.c │ │ │ ├── desktop_settings_scene_pin_menu.c │ │ │ ├── desktop_settings_scene_pin_setup.c │ │ │ ├── desktop_settings_scene_pin_setup_done.c │ │ │ ├── desktop_settings_scene_pin_setup_howto.c │ │ │ ├── desktop_settings_scene_pin_setup_howto2.c │ │ │ └── desktop_settings_scene_start.c │ │ └── views │ │ │ ├── desktop_settings_view_pin_setup_howto.c │ │ │ ├── desktop_settings_view_pin_setup_howto.h │ │ │ ├── desktop_settings_view_pin_setup_howto2.c │ │ │ └── desktop_settings_view_pin_setup_howto2.h │ ├── helpers │ │ ├── pin_lock.c │ │ └── pin_lock.h │ ├── scenes │ │ ├── desktop_scene.c │ │ ├── desktop_scene.h │ │ ├── desktop_scene_config.h │ │ ├── desktop_scene_debug.c │ │ ├── desktop_scene_fault.c │ │ ├── desktop_scene_first_start.c │ │ ├── desktop_scene_hw_mismatch.c │ │ ├── desktop_scene_i.h │ │ ├── desktop_scene_lock_menu.c │ │ ├── desktop_scene_locked.c │ │ ├── desktop_scene_main.c │ │ ├── desktop_scene_pin_input.c │ │ └── desktop_scene_pin_timeout.c │ └── views │ │ ├── desktop_events.h │ │ ├── desktop_view_debug.c │ │ ├── desktop_view_debug.h │ │ ├── desktop_view_first_start.c │ │ ├── desktop_view_first_start.h │ │ ├── desktop_view_lock_menu.c │ │ ├── desktop_view_lock_menu.h │ │ ├── desktop_view_locked.c │ │ ├── desktop_view_locked.h │ │ ├── desktop_view_main.c │ │ ├── desktop_view_main.h │ │ ├── desktop_view_pin_input.c │ │ ├── desktop_view_pin_input.h │ │ ├── desktop_view_pin_setup_done.c │ │ ├── desktop_view_pin_setup_done.h │ │ ├── desktop_view_pin_timeout.c │ │ └── desktop_view_pin_timeout.h ├── dialogs │ ├── dialogs.c │ ├── dialogs.h │ ├── dialogs_api.c │ ├── dialogs_api_lock.h │ ├── dialogs_i.h │ ├── dialogs_message.h │ ├── dialogs_module_file_select.c │ ├── dialogs_module_file_select.h │ ├── dialogs_module_message.c │ ├── dialogs_module_message.h │ ├── view_holder.c │ └── view_holder.h ├── dolphin │ ├── dolphin.c │ ├── dolphin.h │ ├── dolphin_i.h │ ├── helpers │ │ ├── dolphin_deed.c │ │ ├── dolphin_deed.h │ │ ├── dolphin_state.c │ │ └── dolphin_state.h │ └── passport │ │ └── passport.c ├── gpio │ ├── gpio_app.c │ ├── gpio_app.h │ ├── gpio_app_i.h │ ├── gpio_custom_event.h │ ├── gpio_item.c │ ├── gpio_item.h │ ├── scenes │ │ ├── gpio_scene.c │ │ ├── gpio_scene.h │ │ ├── gpio_scene_config.h │ │ ├── gpio_scene_start.c │ │ ├── gpio_scene_test.c │ │ ├── gpio_scene_usb_uart.c │ │ ├── gpio_scene_usb_uart_close_rpc.c │ │ └── gpio_scene_usb_uart_config.c │ ├── usb_uart_bridge.c │ ├── usb_uart_bridge.h │ └── views │ │ ├── gpio_test.c │ │ ├── gpio_test.h │ │ ├── gpio_usb_uart.c │ │ └── gpio_usb_uart.h ├── gui │ ├── canvas.c │ ├── canvas.h │ ├── canvas_i.h │ ├── elements.c │ ├── elements.h │ ├── gui.c │ ├── gui.h │ ├── gui_i.h │ ├── icon.c │ ├── icon.h │ ├── icon_animation.c │ ├── icon_animation.h │ ├── icon_animation_i.h │ ├── icon_i.h │ ├── modules │ │ ├── button_menu.c │ │ ├── button_menu.h │ │ ├── button_panel.c │ │ ├── button_panel.h │ │ ├── byte_input.c │ │ ├── byte_input.h │ │ ├── dialog.c │ │ ├── dialog.h │ │ ├── dialog_ex.c │ │ ├── dialog_ex.h │ │ ├── empty_screen.c │ │ ├── empty_screen.h │ │ ├── file_select.c │ │ ├── file_select.h │ │ ├── loading.c │ │ ├── loading.h │ │ ├── menu.c │ │ ├── menu.h │ │ ├── popup.c │ │ ├── popup.h │ │ ├── submenu.c │ │ ├── submenu.h │ │ ├── text_box.c │ │ ├── text_box.h │ │ ├── text_input.c │ │ ├── text_input.h │ │ ├── validators.c │ │ ├── validators.h │ │ ├── variable_item_list.c │ │ ├── variable_item_list.h │ │ ├── widget.c │ │ ├── widget.h │ │ └── widget_elements │ │ │ ├── widget_element_button.c │ │ │ ├── widget_element_frame.c │ │ │ ├── widget_element_i.h │ │ │ ├── widget_element_icon.c │ │ │ ├── widget_element_string.c │ │ │ ├── widget_element_string_multiline.c │ │ │ └── widget_element_text_box.c │ ├── scene_manager.c │ ├── scene_manager.h │ ├── scene_manager_i.h │ ├── view.c │ ├── view.h │ ├── view_dispatcher.c │ ├── view_dispatcher.h │ ├── view_dispatcher_i.h │ ├── view_i.h │ ├── view_port.c │ ├── view_port.h │ ├── view_port_i.h │ ├── view_stack.c │ └── view_stack.h ├── ibutton │ ├── ibutton.c │ ├── ibutton.h │ ├── ibutton_cli.c │ ├── ibutton_custom_event.h │ ├── ibutton_i.h │ └── scenes │ │ ├── ibutton_scene.c │ │ ├── ibutton_scene.h │ │ ├── ibutton_scene_add_type.c │ │ ├── ibutton_scene_add_value.c │ │ ├── ibutton_scene_config.h │ │ ├── ibutton_scene_delete_confirm.c │ │ ├── ibutton_scene_delete_success.c │ │ ├── ibutton_scene_emulate.c │ │ ├── ibutton_scene_exit_confirm.c │ │ ├── ibutton_scene_info.c │ │ ├── ibutton_scene_read.c │ │ ├── ibutton_scene_read_crc_error.c │ │ ├── ibutton_scene_read_key_menu.c │ │ ├── ibutton_scene_read_not_key_error.c │ │ ├── ibutton_scene_read_success.c │ │ ├── ibutton_scene_retry_confirm.c │ │ ├── ibutton_scene_save_name.c │ │ ├── ibutton_scene_save_success.c │ │ ├── ibutton_scene_saved_key_menu.c │ │ ├── ibutton_scene_select_key.c │ │ ├── ibutton_scene_start.c │ │ ├── ibutton_scene_write.c │ │ └── ibutton_scene_write_success.c ├── infrared │ ├── cli │ │ └── infrared_cli.cpp │ ├── helpers │ │ ├── infrared_parser.cpp │ │ └── infrared_parser.h │ ├── infrared_app.cpp │ ├── infrared_app.h │ ├── infrared_app_brute_force.cpp │ ├── infrared_app_brute_force.h │ ├── infrared_app_event.h │ ├── infrared_app_remote_manager.cpp │ ├── infrared_app_remote_manager.h │ ├── infrared_app_signal.cpp │ ├── infrared_app_signal.h │ ├── infrared_app_view_manager.cpp │ ├── infrared_app_view_manager.h │ ├── infrared_runner.cpp │ ├── scene │ │ ├── infrared_app_scene.h │ │ ├── infrared_app_scene_ask_back.cpp │ │ ├── infrared_app_scene_edit.cpp │ │ ├── infrared_app_scene_edit_delete.cpp │ │ ├── infrared_app_scene_edit_delete_done.cpp │ │ ├── infrared_app_scene_edit_key_select.cpp │ │ ├── infrared_app_scene_edit_rename.cpp │ │ ├── infrared_app_scene_edit_rename_done.cpp │ │ ├── infrared_app_scene_learn.cpp │ │ ├── infrared_app_scene_learn_done.cpp │ │ ├── infrared_app_scene_learn_enter_name.cpp │ │ ├── infrared_app_scene_learn_success.cpp │ │ ├── infrared_app_scene_remote.cpp │ │ ├── infrared_app_scene_remote_list.cpp │ │ ├── infrared_app_scene_start.cpp │ │ ├── infrared_app_scene_universal.cpp │ │ ├── infrared_app_scene_universal_common.cpp │ │ └── infrared_app_scene_universal_tv.cpp │ └── view │ │ ├── infrared_progress_view.c │ │ └── infrared_progress_view.h ├── infrared_monitor │ └── infrared_monitor.c ├── input │ ├── input.c │ ├── input.h │ ├── input_cli.c │ └── input_i.h ├── lfrfid │ ├── helpers │ │ ├── decoder_analyzer.cpp │ │ ├── decoder_analyzer.h │ │ ├── decoder_emmarin.cpp │ │ ├── decoder_emmarin.h │ │ ├── decoder_gpio_out.cpp │ │ ├── decoder_gpio_out.h │ │ ├── decoder_hid26.cpp │ │ ├── decoder_hid26.h │ │ ├── decoder_indala.cpp │ │ ├── decoder_indala.h │ │ ├── emmarin.h │ │ ├── encoder_emmarin.cpp │ │ ├── encoder_emmarin.h │ │ ├── encoder_generic.h │ │ ├── encoder_hid_h10301.cpp │ │ ├── encoder_hid_h10301.h │ │ ├── encoder_indala_40134.cpp │ │ ├── encoder_indala_40134.h │ │ ├── key_info.cpp │ │ ├── key_info.h │ │ ├── osc_fsk.cpp │ │ ├── osc_fsk.h │ │ ├── protocols │ │ │ ├── protocol_emmarin.cpp │ │ │ ├── protocol_emmarin.h │ │ │ ├── protocol_generic.h │ │ │ ├── protocol_hid_h10301.cpp │ │ │ ├── protocol_hid_h10301.h │ │ │ ├── protocol_indala_40134.cpp │ │ │ └── protocol_indala_40134.h │ │ ├── pulse_joiner.cpp │ │ ├── pulse_joiner.h │ │ ├── rfid_key.cpp │ │ ├── rfid_key.h │ │ ├── rfid_reader.cpp │ │ ├── rfid_reader.h │ │ ├── rfid_timer_emulator.cpp │ │ ├── rfid_timer_emulator.h │ │ ├── rfid_worker.cpp │ │ ├── rfid_worker.h │ │ ├── rfid_writer.cpp │ │ ├── rfid_writer.h │ │ ├── state_sequencer.cpp │ │ └── state_sequencer.h │ ├── lfrfid_app.cpp │ ├── lfrfid_app.h │ ├── lfrfid_app_launcher.cpp │ ├── lfrfid_cli.cpp │ ├── scene │ │ ├── lfrfid_app_scene_delete_confirm.cpp │ │ ├── lfrfid_app_scene_delete_confirm.h │ │ ├── lfrfid_app_scene_delete_success.cpp │ │ ├── lfrfid_app_scene_delete_success.h │ │ ├── lfrfid_app_scene_emulate.cpp │ │ ├── lfrfid_app_scene_emulate.h │ │ ├── lfrfid_app_scene_exit_confirm.cpp │ │ ├── lfrfid_app_scene_exit_confirm.h │ │ ├── lfrfid_app_scene_read.cpp │ │ ├── lfrfid_app_scene_read.h │ │ ├── lfrfid_app_scene_read_menu.cpp │ │ ├── lfrfid_app_scene_read_menu.h │ │ ├── lfrfid_app_scene_read_success.cpp │ │ ├── lfrfid_app_scene_read_success.h │ │ ├── lfrfid_app_scene_retry_confirm.cpp │ │ ├── lfrfid_app_scene_retry_confirm.h │ │ ├── lfrfid_app_scene_save_data.cpp │ │ ├── lfrfid_app_scene_save_data.h │ │ ├── lfrfid_app_scene_save_name.cpp │ │ ├── lfrfid_app_scene_save_name.h │ │ ├── lfrfid_app_scene_save_success.cpp │ │ ├── lfrfid_app_scene_save_success.h │ │ ├── lfrfid_app_scene_save_type.cpp │ │ ├── lfrfid_app_scene_save_type.h │ │ ├── lfrfid_app_scene_saved_info.cpp │ │ ├── lfrfid_app_scene_saved_info.h │ │ ├── lfrfid_app_scene_saved_key_menu.cpp │ │ ├── lfrfid_app_scene_saved_key_menu.h │ │ ├── lfrfid_app_scene_select_key.cpp │ │ ├── lfrfid_app_scene_select_key.h │ │ ├── lfrfid_app_scene_start.cpp │ │ ├── lfrfid_app_scene_start.h │ │ ├── lfrfid_app_scene_write.cpp │ │ ├── lfrfid_app_scene_write.h │ │ ├── lfrfid_app_scene_write_success.cpp │ │ └── lfrfid_app_scene_write_success.h │ └── view │ │ ├── container_vm.cpp │ │ ├── container_vm.h │ │ └── elements │ │ ├── button_element.cpp │ │ ├── button_element.h │ │ ├── generic_element.cpp │ │ ├── generic_element.h │ │ ├── icon_element.cpp │ │ ├── icon_element.h │ │ ├── string_element.cpp │ │ └── string_element.h ├── lfrfid_debug │ ├── lfrfid_debug_app.cpp │ ├── lfrfid_debug_app.h │ ├── lfrfid_debug_app_launcher.cpp │ ├── scene │ │ ├── lfrfid_debug_app_scene_start.cpp │ │ ├── lfrfid_debug_app_scene_start.h │ │ ├── lfrfid_debug_app_scene_tune.cpp │ │ └── lfrfid_debug_app_scene_tune.h │ └── view_modules │ │ ├── lfrfid_view_tune_vm.cpp │ │ └── lfrfid_view_tune_vm.h ├── loader │ ├── loader.c │ ├── loader.h │ └── loader_i.h ├── music_player │ ├── music_player.c │ ├── music_player_cli.c │ ├── music_player_worker.c │ └── music_player_worker.h ├── nfc │ ├── helpers │ │ ├── nfc_custom_event.h │ │ ├── nfc_emv_parser.c │ │ ├── nfc_emv_parser.h │ │ ├── nfc_mf_classic_dict.c │ │ └── nfc_mf_classic_dict.h │ ├── nfc.c │ ├── nfc.h │ ├── nfc_cli.c │ ├── nfc_device.c │ ├── nfc_device.h │ ├── nfc_i.h │ ├── nfc_types.c │ ├── nfc_types.h │ ├── nfc_worker.c │ ├── nfc_worker.h │ ├── nfc_worker_i.h │ ├── scenes │ │ ├── nfc_scene.c │ │ ├── nfc_scene.h │ │ ├── nfc_scene_card_menu.c │ │ ├── nfc_scene_config.h │ │ ├── nfc_scene_debug.c │ │ ├── nfc_scene_delete.c │ │ ├── nfc_scene_delete_success.c │ │ ├── nfc_scene_device_info.c │ │ ├── nfc_scene_dict_not_found.c │ │ ├── nfc_scene_emulate_apdu_sequence.c │ │ ├── nfc_scene_emulate_mifare_ul.c │ │ ├── nfc_scene_emulate_uid.c │ │ ├── nfc_scene_field.c │ │ ├── nfc_scene_file_select.c │ │ ├── nfc_scene_mifare_desfire_app.c │ │ ├── nfc_scene_mifare_desfire_data.c │ │ ├── nfc_scene_mifare_desfire_menu.c │ │ ├── nfc_scene_mifare_ul_menu.c │ │ ├── nfc_scene_read_card.c │ │ ├── nfc_scene_read_card_success.c │ │ ├── nfc_scene_read_emv_app.c │ │ ├── nfc_scene_read_emv_app_success.c │ │ ├── nfc_scene_read_emv_data.c │ │ ├── nfc_scene_read_emv_data_success.c │ │ ├── nfc_scene_read_mifare_classic.c │ │ ├── nfc_scene_read_mifare_desfire.c │ │ ├── nfc_scene_read_mifare_desfire_success.c │ │ ├── nfc_scene_read_mifare_ul.c │ │ ├── nfc_scene_read_mifare_ul_success.c │ │ ├── nfc_scene_restore_original.c │ │ ├── nfc_scene_run_emv_app_confirm.c │ │ ├── nfc_scene_save_name.c │ │ ├── nfc_scene_save_success.c │ │ ├── nfc_scene_saved_menu.c │ │ ├── nfc_scene_scripts_menu.c │ │ ├── nfc_scene_set_atqa.c │ │ ├── nfc_scene_set_sak.c │ │ ├── nfc_scene_set_type.c │ │ ├── nfc_scene_set_uid.c │ │ └── nfc_scene_start.c │ └── views │ │ ├── bank_card.c │ │ ├── bank_card.h │ │ ├── dict_attack.c │ │ └── dict_attack.h ├── notification │ ├── notification.h │ ├── notification_app.c │ ├── notification_app.h │ ├── notification_app_api.c │ ├── notification_messages.c │ ├── notification_messages.h │ ├── notification_messages_notes.c │ ├── notification_messages_notes.h │ └── notification_settings_app.c ├── power │ ├── battery_test_app │ │ ├── battery_test_app.c │ │ └── battery_test_app.h │ ├── power_cli.c │ ├── power_cli.h │ ├── power_service │ │ ├── power.c │ │ ├── power.h │ │ ├── power_api.c │ │ ├── power_i.h │ │ └── views │ │ │ ├── power_off.c │ │ │ └── power_off.h │ └── power_settings_app │ │ ├── power_settings_app.c │ │ ├── power_settings_app.h │ │ ├── scenes │ │ ├── power_settings_scene.c │ │ ├── power_settings_scene.h │ │ ├── power_settings_scene_battery_info.c │ │ ├── power_settings_scene_config.h │ │ ├── power_settings_scene_power_off.c │ │ ├── power_settings_scene_reboot.c │ │ └── power_settings_scene_start.c │ │ └── views │ │ ├── battery_info.c │ │ └── battery_info.h ├── rpc │ ├── rpc.c │ ├── rpc.h │ ├── rpc_app.c │ ├── rpc_cli.c │ ├── rpc_gui.c │ ├── rpc_i.h │ ├── rpc_storage.c │ └── rpc_system.c ├── scened_app_example │ ├── scene │ │ ├── scened_app_scene_byte_input.cpp │ │ ├── scened_app_scene_byte_input.h │ │ ├── scened_app_scene_start.cpp │ │ └── scened_app_scene_start.h │ ├── scened_app.cpp │ ├── scened_app.h │ └── scened_app_launcher.cpp ├── snake_game │ └── snake_game.c ├── storage │ ├── filesystem_api.c │ ├── filesystem_api_defines.h │ ├── filesystem_api_internal.h │ ├── storage.c │ ├── storage.h │ ├── storage_cli.c │ ├── storage_external_api.c │ ├── storage_glue.c │ ├── storage_glue.h │ ├── storage_i.h │ ├── storage_internal_api.c │ ├── storage_message.h │ ├── storage_processing.c │ ├── storage_processing.h │ ├── storage_sd_api.c │ ├── storage_sd_api.h │ ├── storage_test_app.c │ └── storages │ │ ├── sd_notify.c │ │ ├── sd_notify.h │ │ ├── storage_ext.c │ │ ├── storage_ext.h │ │ ├── storage_int.c │ │ └── storage_int.h ├── storage_settings │ ├── scenes │ │ ├── storage_settings_scene.c │ │ ├── storage_settings_scene.h │ │ ├── storage_settings_scene_benchmark.c │ │ ├── storage_settings_scene_config.h │ │ ├── storage_settings_scene_eject_confirm.c │ │ ├── storage_settings_scene_ejected.c │ │ ├── storage_settings_scene_factory_reset.c │ │ ├── storage_settings_scene_format_confirm.c │ │ ├── storage_settings_scene_formatting.c │ │ ├── storage_settings_scene_internal_info.c │ │ ├── storage_settings_scene_sd_info.c │ │ └── storage_settings_scene_start.c │ ├── storage_settings.c │ └── storage_settings.h ├── subghz │ ├── helpers │ │ ├── subghz_chat.c │ │ ├── subghz_chat.h │ │ ├── subghz_custom_event.h │ │ ├── subghz_frequency_analyzer_worker.c │ │ ├── subghz_frequency_analyzer_worker.h │ │ ├── subghz_testing.c │ │ └── subghz_testing.h │ ├── scenes │ │ ├── subghz_scene.c │ │ ├── subghz_scene.h │ │ ├── subghz_scene_config.h │ │ ├── subghz_scene_delete.c │ │ ├── subghz_scene_delete_raw.c │ │ ├── subghz_scene_delete_success.c │ │ ├── subghz_scene_frequency_analyzer.c │ │ ├── subghz_scene_more_raw.c │ │ ├── subghz_scene_need_saving.c │ │ ├── subghz_scene_read_raw.c │ │ ├── subghz_scene_receiver.c │ │ ├── subghz_scene_receiver_config.c │ │ ├── subghz_scene_receiver_info.c │ │ ├── subghz_scene_save_name.c │ │ ├── subghz_scene_save_success.c │ │ ├── subghz_scene_saved.c │ │ ├── subghz_scene_saved_menu.c │ │ ├── subghz_scene_set_type.c │ │ ├── subghz_scene_show_error.c │ │ ├── subghz_scene_show_error_sub.c │ │ ├── subghz_scene_show_only_rx.c │ │ ├── subghz_scene_start.c │ │ ├── subghz_scene_test.c │ │ ├── subghz_scene_test_carrier.c │ │ ├── subghz_scene_test_packet.c │ │ ├── subghz_scene_test_static.c │ │ └── subghz_scene_transmitter.c │ ├── subghz.c │ ├── subghz.h │ ├── subghz_cli.c │ ├── subghz_cli.h │ ├── subghz_history.c │ ├── subghz_history.h │ ├── subghz_i.c │ ├── subghz_i.h │ ├── subghz_setting.c │ ├── subghz_setting.h │ └── views │ │ ├── receiver.c │ │ ├── receiver.h │ │ ├── subghz_frequency_analyzer.c │ │ ├── subghz_frequency_analyzer.h │ │ ├── subghz_read_raw.c │ │ ├── subghz_read_raw.h │ │ ├── subghz_test_carrier.c │ │ ├── subghz_test_carrier.h │ │ ├── subghz_test_packet.c │ │ ├── subghz_test_packet.h │ │ ├── subghz_test_static.c │ │ ├── subghz_test_static.h │ │ ├── transmitter.c │ │ └── transmitter.h ├── system │ ├── system_settings.c │ └── system_settings.h ├── u2f │ ├── scenes │ │ ├── u2f_scene.c │ │ ├── u2f_scene.h │ │ ├── u2f_scene_config.h │ │ ├── u2f_scene_error.c │ │ └── u2f_scene_main.c │ ├── u2f.c │ ├── u2f.h │ ├── u2f_app.c │ ├── u2f_app.h │ ├── u2f_app_i.h │ ├── u2f_data.c │ ├── u2f_data.h │ ├── u2f_hid.c │ ├── u2f_hid.h │ └── views │ │ ├── u2f_view.c │ │ └── u2f_view.h ├── unit_tests │ ├── flipper_format │ │ ├── flipper_format_string_test.c │ │ └── flipper_format_test.c │ ├── furi_memmgr_test.c │ ├── furi_pubsub_test.c │ ├── furi_record_test.c │ ├── furi_valuemutex_test.c │ ├── infrared_decoder_encoder │ │ ├── infrared_decoder_encoder_test.c │ │ └── test_data │ │ │ ├── infrared_nec_test_data.srcdata │ │ │ ├── infrared_necext_test_data.srcdata │ │ │ ├── infrared_rc5_test_data.srcdata │ │ │ ├── infrared_rc6_test_data.srcdata │ │ │ ├── infrared_samsung_test_data.srcdata │ │ │ └── infrared_sirc_test_data.srcdata │ ├── minunit.h │ ├── minunit_test.c │ ├── minunit_vars.h │ ├── minunit_vars_ex.h │ ├── rpc │ │ └── rpc_test.c │ ├── storage │ │ ├── dirwalk_test.c │ │ └── storage_test.c │ ├── stream │ │ └── stream_test.c │ ├── subghz │ │ └── subghz_test.c │ └── test_index.c ├── universal_rf │ └── universal_rf.c └── updater │ ├── cli │ └── updater_cli.c │ ├── scenes │ ├── updater_scene.c │ ├── updater_scene.h │ ├── updater_scene_config.h │ ├── updater_scene_error.c │ ├── updater_scene_loadcfg.c │ └── updater_scene_main.c │ ├── updater.c │ ├── updater_i.h │ ├── util │ ├── update_task.c │ ├── update_task.h │ ├── update_task_i.h │ ├── update_task_worker_backup.c │ └── update_task_worker_flasher.c │ └── views │ ├── updater_main.c │ └── updater_main.h ├── assets ├── .gitignore ├── Makefile ├── ReadMe.md ├── assets.mk ├── compiled │ ├── application.pb.c │ ├── application.pb.h │ ├── assets_dolphin_blocking.c │ ├── assets_dolphin_blocking.h │ ├── assets_dolphin_internal.c │ ├── assets_dolphin_internal.h │ ├── assets_icons.c │ ├── assets_icons.h │ ├── flipper.pb.c │ ├── flipper.pb.h │ ├── gui.pb.c │ ├── gui.pb.h │ ├── protobuf_version.h │ ├── storage.pb.c │ ├── storage.pb.h │ ├── system.pb.c │ └── system.pb.h ├── copro.mk ├── dolphin │ ├── ReadMe.md │ ├── blocking │ │ ├── L0_NewMail_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L0_NoDb_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L0_SdBad_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ └── meta.txt │ │ ├── L0_SdOk_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L0_Url_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ └── manifest.txt │ ├── external │ │ ├── L1_Boxing_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ └── meta.txt │ │ ├── L1_Cry_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ └── meta.txt │ │ ├── L1_Furippa1_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Laptop_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ └── meta.txt │ │ ├── L1_Leaving_sad_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Mad_fist_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Read_books_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ └── meta.txt │ │ ├── L1_Recording_128x51 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L1_Sleep_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L1_Waves_128x50 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ └── meta.txt │ │ ├── L2_Furippa2_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L2_Hacking_pc_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ └── meta.txt │ │ ├── L2_Soldering_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Furippa3_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_14.png │ │ │ ├── frame_15.png │ │ │ ├── frame_16.png │ │ │ ├── frame_17.png │ │ │ ├── frame_18.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Hijack_radio_128x64 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ ├── L3_Lab_research_128x54 │ │ │ ├── frame_0.png │ │ │ ├── frame_1.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ ├── frame_12.png │ │ │ ├── frame_13.png │ │ │ ├── frame_2.png │ │ │ ├── frame_3.png │ │ │ ├── frame_4.png │ │ │ ├── frame_5.png │ │ │ ├── frame_6.png │ │ │ ├── frame_7.png │ │ │ ├── frame_8.png │ │ │ ├── frame_9.png │ │ │ └── meta.txt │ │ └── manifest.txt │ └── internal │ │ ├── L1_BadBattery_128x47 │ │ ├── frame_0.png │ │ ├── frame_1.png │ │ └── meta.txt │ │ ├── L1_NoSd_128x49 │ │ ├── frame_0.png │ │ ├── frame_1.png │ │ ├── frame_2.png │ │ ├── frame_3.png │ │ ├── frame_4.png │ │ ├── frame_5.png │ │ └── meta.txt │ │ ├── L1_Tv_128x47 │ │ ├── frame_0.png │ │ ├── frame_1.png │ │ ├── frame_2.png │ │ ├── frame_3.png │ │ ├── frame_4.png │ │ ├── frame_5.png │ │ ├── frame_6.png │ │ ├── frame_7.png │ │ └── meta.txt │ │ └── manifest.txt ├── icons │ ├── About │ │ ├── Certification1_103x23.png │ │ └── Certification2_119x30.png │ ├── Animations │ │ ├── Levelup1_128x64 │ │ │ ├── frame_00.png │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ │ └── Levelup2_128x64 │ │ │ ├── frame_00.png │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ ├── Archive │ │ ├── 125_10px.png │ │ ├── Nfc_10px.png │ │ ├── badusb_10px.png │ │ ├── ble_10px.png │ │ ├── dir_10px.png │ │ ├── ibutt_10px.png │ │ ├── ir_10px.png │ │ ├── sub1_10px.png │ │ ├── u2f_10px.png │ │ ├── unknown_10px.png │ │ └── update_10px.png │ ├── BLE │ │ ├── BLE_HID │ │ │ ├── Ble_connected_38x34.png │ │ │ ├── Ble_disconnected_24x34.png │ │ │ ├── Button_18x18.png │ │ │ ├── Circles_47x47.png │ │ │ ├── Ok_btn_9x9.png │ │ │ ├── Pressed_Button_13x13.png │ │ │ ├── Space_65x18.png │ │ │ ├── Voldwn_6x6.png │ │ │ └── Volup_8x6.png │ │ └── BLE_Pairing_128x64.png │ ├── BadUsb │ │ ├── Clock_18x18.png │ │ ├── Error_18x18.png │ │ ├── EviSmile1_18x21.png │ │ ├── EviSmile2_18x21.png │ │ ├── EviWaiting1_18x21.png │ │ ├── EviWaiting2_18x21.png │ │ ├── Percent_10x14.png │ │ ├── Smile_18x18.png │ │ └── UsbTree_48x22.png │ ├── Common │ │ ├── ButtonCenter_7x7.png │ │ ├── ButtonDown_7x4.png │ │ ├── ButtonLeftSmall_3x5.png │ │ ├── ButtonLeft_4x7.png │ │ ├── ButtonRightSmall_3x5.png │ │ ├── ButtonRight_4x7.png │ │ ├── ButtonUp_7x4.png │ │ ├── DFU_128x50.png │ │ ├── Loading_24 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ └── frame_rate │ │ └── Warning_30x23.png │ ├── Dolphin │ │ ├── DolphinFirstStart0_70x53.png │ │ ├── DolphinFirstStart1_59x53.png │ │ ├── DolphinFirstStart2_59x51.png │ │ ├── DolphinFirstStart3_57x48.png │ │ ├── DolphinFirstStart4_67x53.png │ │ ├── DolphinFirstStart5_54x49.png │ │ ├── DolphinFirstStart6_58x54.png │ │ ├── DolphinFirstStart7_61x51.png │ │ ├── DolphinFirstStart8_56x51.png │ │ ├── DolphinOkay_41x43.png │ │ └── Flipper_young_80x60.png │ ├── GPIO │ │ ├── ArrowDownEmpty_14x15.png │ │ ├── ArrowDownFilled_14x15.png │ │ ├── ArrowUpEmpty_14x15.png │ │ └── ArrowUpFilled_14x15.png │ ├── Infrared │ │ ├── Back_15x10.png │ │ ├── DolphinReadingSuccess_59x63.png │ │ ├── Down_25x27.png │ │ ├── Down_hvr_25x27.png │ │ ├── Fill-marker_7x7.png │ │ ├── InfraredArrowDown_4x8.png │ │ ├── InfraredArrowUp_4x8.png │ │ ├── InfraredLearnShort_128x31.png │ │ ├── InfraredLearn_128x64.png │ │ ├── InfraredSendShort_128x34.png │ │ ├── InfraredSend_128x64.png │ │ ├── Mute_25x27.png │ │ ├── Mute_hvr_25x27.png │ │ ├── Power_25x27.png │ │ ├── Power_hvr_25x27.png │ │ ├── Up_25x27.png │ │ ├── Up_hvr_25x27.png │ │ ├── Vol_down_25x27.png │ │ ├── Vol_down_hvr_25x27.png │ │ ├── Vol_up_25x27.png │ │ └── Vol_up_hvr_25x27.png │ ├── Interface │ │ ├── Back3_45x8.png │ │ ├── DoorLeft_70x55.png │ │ ├── DoorLocked_10x56.png │ │ ├── DoorRight_70x55.png │ │ ├── PassportBottom_128x17.png │ │ ├── PassportLeft_6x47.png │ │ └── WarningDolphin_45x42.png │ ├── Keyboard │ │ ├── KeyBackspaceSelected_16x9.png │ │ ├── KeyBackspace_16x9.png │ │ ├── KeySaveSelected_24x11.png │ │ └── KeySave_24x11.png │ ├── MainMenu │ │ ├── 125khz_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── BadUsb_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ ├── frame_11.png │ │ │ └── frame_rate │ │ ├── Bluetooth_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ └── frame_rate │ │ ├── Debug_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── FileManager_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ │ ├── GPIO_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ └── frame_rate │ │ ├── Games_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ └── frame_rate │ │ ├── Infrared_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ └── frame_rate │ │ ├── NFC_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── Passport_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ │ ├── Plugins_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ └── frame_rate │ │ ├── Power_14 │ │ │ ├── frame_01.png │ │ │ └── frame_rate │ │ ├── Settings_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ ├── frame_08.png │ │ │ ├── frame_09.png │ │ │ ├── frame_10.png │ │ │ └── frame_rate │ │ ├── Sub1ghz_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ └── frame_rate │ │ ├── Tamagotchi_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ └── frame_rate │ │ ├── U2F_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ └── frame_rate │ │ ├── UniversalRemote_14 │ │ │ ├── frame_00_delay-0.04s.png │ │ │ ├── frame_01_delay-0.04s.png │ │ │ ├── frame_02_delay-0.04s.png │ │ │ ├── frame_03_delay-0.04s.png │ │ │ ├── frame_04_delay-0.04s.png │ │ │ ├── frame_05_delay-0.04s.png │ │ │ ├── frame_06_delay-0.04s.png │ │ │ ├── frame_07_delay-0.04s.png │ │ │ ├── frame_08_delay-0.04s.png │ │ │ ├── frame_09_delay-0.04s.png │ │ │ ├── frame_10_delay-0.04s.png │ │ │ ├── frame_11_delay-0.04s.png │ │ │ ├── frame_12_delay-0.04s.png │ │ │ ├── frame_13_delay-0.04s.png │ │ │ ├── frame_14_delay-0.04s.png │ │ │ ├── frame_15_delay-0.04s.png │ │ │ ├── frame_16_delay-0.04s.png │ │ │ ├── frame_17_delay-0.04s.png │ │ │ ├── frame_18_delay-0.04s.png │ │ │ ├── frame_19_delay-0.04s.png │ │ │ ├── frame_20_delay-0.04s.png │ │ │ ├── frame_21_delay-0.04s.png │ │ │ ├── frame_22_delay-0.04s.png │ │ │ ├── frame_23_delay-0.04s.png │ │ │ ├── frame_24_delay-0.04s.png │ │ │ ├── frame_25_delay-0.04s.png │ │ │ ├── frame_26_delay-0.04s.png │ │ │ ├── frame_27_delay-0.04s.png │ │ │ ├── frame_28_delay-0.04s.png │ │ │ ├── frame_29_delay-0.04s.png │ │ │ └── frame_rate │ │ └── iButton_14 │ │ │ ├── frame_01.png │ │ │ ├── frame_02.png │ │ │ ├── frame_03.png │ │ │ ├── frame_04.png │ │ │ ├── frame_05.png │ │ │ ├── frame_06.png │ │ │ ├── frame_07.png │ │ │ └── frame_rate │ ├── NFC │ │ ├── Detailed_chip_17x13.png │ │ └── Medium-chip-22x21.png │ ├── PIN │ │ ├── Pin_arrow_down_7x9.png │ │ ├── Pin_arrow_left_9x7.png │ │ ├── Pin_arrow_right_9x7.png │ │ ├── Pin_arrow_up7x9.png │ │ ├── Pin_attention_dpad_29x29.png │ │ ├── Pin_back_arrow_10x8.png │ │ ├── Pin_back_full_40x8.png │ │ ├── Pin_cell_13x13.png │ │ ├── Pin_pointer_5x3.png │ │ └── Pin_star_7x7.png │ ├── Passport │ │ ├── passport_bad1_46x49.png │ │ ├── passport_bad2_46x49.png │ │ ├── passport_bad3_46x49.png │ │ ├── passport_bottom_128x18.png │ │ ├── passport_happy1_46x49.png │ │ ├── passport_happy2_46x49.png │ │ ├── passport_happy3_46x49.png │ │ ├── passport_left_6x46.png │ │ ├── passport_okay1_46x49.png │ │ ├── passport_okay2_46x49.png │ │ └── passport_okay3_46x49.png │ ├── Power │ │ ├── BatteryBody_52x28.png │ │ ├── Battery_16x16.png │ │ ├── FaceCharging_29x14.png │ │ ├── FaceConfused_29x14.png │ │ ├── FaceNopower_29x14.png │ │ ├── FaceNormal_29x14.png │ │ ├── Health_16x16.png │ │ ├── Temperature_16x16.png │ │ └── Voltage_16x16.png │ ├── RFID │ │ ├── RFIDBigChip_37x36.png │ │ ├── RFIDDolphinReceive_97x61.png │ │ ├── RFIDDolphinSend_97x61.png │ │ └── RFIDDolphinSuccess_108x57.png │ ├── SDCard │ │ ├── SDError_43x35.png │ │ └── SDQuestion_35x43.png │ ├── Settings │ │ └── Cry_dolph_55x52.png │ ├── StatusBar │ │ ├── Attention_5x8.png │ │ ├── Background_128x11.png │ │ ├── BadUsb_9x8.png │ │ ├── Battery_19x8.png │ │ ├── Battery_26x8.png │ │ ├── Bluetooth_Connected_16x8.png │ │ ├── Bluetooth_Idle_5x8.png │ │ ├── Charging-lightning_9x10.png │ │ ├── Charging-lightning_mask_9x10.png │ │ ├── Lock_8x8.png │ │ ├── PlaceholderL_11x13.png │ │ ├── PlaceholderR_30x13.png │ │ ├── SDcardFail_11x8.png │ │ ├── SDcardMounted_11x8.png │ │ └── USBConnected_15x8.png │ ├── SubGhz │ │ ├── Lock_7x8.png │ │ ├── MHz_25x11.png │ │ ├── Quest_7x8.png │ │ ├── Scanning_123x52.png │ │ ├── Unlock_7x8.png │ │ └── remote-icon.png │ ├── U2F │ │ ├── Auth_62x31.png │ │ ├── Connect_me_62x31.png │ │ ├── Connected_62x31.png │ │ ├── Drive_112x35.png │ │ └── Error_62x31.png │ ├── Update │ │ └── Updating_32x40.png │ └── iButton │ │ ├── DolphinExcited_64x63.png │ │ ├── DolphinMafia_115x62.png │ │ ├── DolphinNice_96x59.png │ │ ├── DolphinWait_61x59.png │ │ ├── iButtonDolphinSuccess_109x60.png │ │ ├── iButtonDolphinVerySuccess_108x52.png │ │ └── iButtonKey_49x44.png ├── resources │ ├── Manifest │ ├── badusb │ │ ├── demo_macos.txt │ │ └── demo_windows.txt │ ├── dolphin │ │ ├── L1_Boxing_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ └── meta.txt │ │ ├── L1_Cry_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ └── meta.txt │ │ ├── L1_Furippa1_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_12.bm │ │ │ ├── frame_13.bm │ │ │ ├── frame_14.bm │ │ │ ├── frame_15.bm │ │ │ ├── frame_16.bm │ │ │ ├── frame_17.bm │ │ │ ├── frame_18.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L1_Laptop_128x51 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ └── meta.txt │ │ ├── L1_Leaving_sad_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_12.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L1_Mad_fist_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_12.bm │ │ │ ├── frame_13.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L1_Read_books_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ └── meta.txt │ │ ├── L1_Recording_128x51 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L1_Sleep_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ └── meta.txt │ │ ├── L1_Waves_128x50 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ └── meta.txt │ │ ├── L2_Furippa2_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_12.bm │ │ │ ├── frame_13.bm │ │ │ ├── frame_14.bm │ │ │ ├── frame_15.bm │ │ │ ├── frame_16.bm │ │ │ ├── frame_17.bm │ │ │ ├── frame_18.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L2_Hacking_pc_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ └── meta.txt │ │ ├── L2_Soldering_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L3_Furippa3_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_12.bm │ │ │ ├── frame_13.bm │ │ │ ├── frame_14.bm │ │ │ ├── frame_15.bm │ │ │ ├── frame_16.bm │ │ │ ├── frame_17.bm │ │ │ ├── frame_18.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L3_Hijack_radio_128x64 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_12.bm │ │ │ ├── frame_13.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ ├── L3_Lab_research_128x54 │ │ │ ├── frame_0.bm │ │ │ ├── frame_1.bm │ │ │ ├── frame_10.bm │ │ │ ├── frame_11.bm │ │ │ ├── frame_12.bm │ │ │ ├── frame_13.bm │ │ │ ├── frame_2.bm │ │ │ ├── frame_3.bm │ │ │ ├── frame_4.bm │ │ │ ├── frame_5.bm │ │ │ ├── frame_6.bm │ │ │ ├── frame_7.bm │ │ │ ├── frame_8.bm │ │ │ ├── frame_9.bm │ │ │ └── meta.txt │ │ └── manifest.txt │ ├── infrared │ │ └── assets │ │ │ └── tv.ir │ ├── music_player │ │ └── Marble_Machine.fmf │ ├── nfc │ │ └── assets │ │ │ ├── aid.nfc │ │ │ ├── country_code.nfc │ │ │ ├── currency_code.nfc │ │ │ └── mf_classic_dict.nfc │ ├── subghz │ │ └── assets │ │ │ ├── came_atomo │ │ │ ├── keeloq_mfcodes │ │ │ ├── keeloq_mfcodes_user │ │ │ ├── nice_flor_s │ │ │ ├── setting_frequency_analyzer_user │ │ │ ├── setting_user │ │ │ └── universal_rf_map │ └── u2f │ │ └── assets │ │ ├── cert.der │ │ └── cert_key.u2f └── unit_tests │ └── subghz │ ├── came.sub │ ├── came_atomo_raw.sub │ ├── came_raw.sub │ ├── came_twee.sub │ ├── came_twee_raw.sub │ ├── cenmax_raw.sub │ ├── doorhan.sub │ ├── doorhan_raw.sub │ ├── faac_slh_raw.sub │ ├── firefly_raw.sub │ ├── firely.sub │ ├── gate_tx.sub │ ├── gate_tx_raw.sub │ ├── holtek.sub │ ├── holtek_raw.sub │ ├── hormann_hsm_raw.sub │ ├── ido_117_111_raw.sub │ ├── kia_seed_raw.sub │ ├── megacode.sub │ ├── megacode_raw.sub │ ├── nero_radio_raw.sub │ ├── nero_sketch_raw.sub │ ├── nice_flo.sub │ ├── nice_flo_raw.sub │ ├── nice_flor_s_raw.sub │ ├── princeton.sub │ ├── princeton_raw.sub │ ├── scher_khan_magic_code.sub │ ├── security_pls_1_0_raw.sub │ ├── security_pls_2_0_raw.sub │ ├── somfy_keytis_raw.sub │ ├── somfy_telis_raw.sub │ └── test_random_raw.sub ├── core ├── core.mk ├── flipper.c ├── flipper.h ├── furi.c ├── furi.h └── furi │ ├── check.c │ ├── check.h │ ├── common_defines.h │ ├── dangerous_defines.h │ ├── log.c │ ├── log.h │ ├── memmgr.c │ ├── memmgr.h │ ├── memmgr_heap.c │ ├── memmgr_heap.h │ ├── pubsub.c │ ├── pubsub.h │ ├── record.c │ ├── record.h │ ├── stdglue.c │ ├── stdglue.h │ ├── thread.c │ ├── thread.h │ ├── valuemutex.c │ └── valuemutex.h ├── debug ├── FreeRTOS │ ├── FreeRTOS.py │ ├── FreeRTOSgdb │ │ ├── EventGroup.py │ │ ├── GDBCommands.py │ │ ├── HandleRegistry.py │ │ ├── List.py │ │ ├── QueueTools.py │ │ ├── Task.py │ │ ├── Types.py │ │ └── __init__.py │ ├── LICENSE │ └── README.md ├── PyCortexMDebug │ ├── LICENSE │ ├── PyCortexMDebug.py │ ├── README.md │ └── cmdebug │ │ ├── __init__.py │ │ ├── dwt_gdb.py │ │ ├── svd.py │ │ ├── svd_gdb.py │ │ └── x2d.py ├── STM32WB55_CM4.svd └── stm32wbx.cfg ├── docker-compose.yml ├── docker ├── Dockerfile └── entrypoint.sh ├── documentation ├── Doxyfile ├── KeyCombo.md └── OTA.md ├── firmware ├── Makefile ├── ReadMe.md └── targets │ ├── f7 │ ├── Inc │ │ ├── FreeRTOSConfig.h │ │ ├── alt_boot.h │ │ ├── stm32.h │ │ └── stm32_assert.h │ ├── Src │ │ ├── dfu.c │ │ ├── main.c │ │ ├── system_stm32wbxx.c │ │ └── update.c │ ├── ble_glue │ │ ├── app_common.h │ │ ├── app_conf.h │ │ ├── app_debug.c │ │ ├── app_debug.h │ │ ├── battery_service.c │ │ ├── battery_service.h │ │ ├── ble_app.c │ │ ├── ble_app.h │ │ ├── ble_conf.h │ │ ├── ble_dbg_conf.h │ │ ├── ble_glue.c │ │ ├── ble_glue.h │ │ ├── dev_info_service.c │ │ ├── dev_info_service.h │ │ ├── gap.c │ │ ├── gap.h │ │ ├── hid_service.c │ │ ├── hid_service.h │ │ ├── hw_conf.h │ │ ├── hw_if.h │ │ ├── hw_ipcc.c │ │ ├── serial_service.c │ │ ├── serial_service.h │ │ ├── tl_dbg_conf.h │ │ └── utilities_conf.h │ ├── fatfs │ │ ├── fatfs.c │ │ ├── fatfs.h │ │ ├── ffconf.h │ │ ├── spi_sd_hal.c │ │ ├── stm32_adafruit_sd.c │ │ ├── stm32_adafruit_sd.h │ │ ├── syscall.c │ │ ├── user_diskio.c │ │ └── user_diskio.h │ ├── furi_hal │ │ ├── furi_hal.c │ │ ├── furi_hal_bt.c │ │ ├── furi_hal_bt_hid.c │ │ ├── furi_hal_bt_serial.c │ │ ├── furi_hal_clock.c │ │ ├── furi_hal_clock.h │ │ ├── furi_hal_compress.c │ │ ├── furi_hal_console.c │ │ ├── furi_hal_console.h │ │ ├── furi_hal_crc.c │ │ ├── furi_hal_crc.h │ │ ├── furi_hal_crypto.c │ │ ├── furi_hal_debug.c │ │ ├── furi_hal_delay.c │ │ ├── furi_hal_flash.c │ │ ├── furi_hal_flash.h │ │ ├── furi_hal_gpio.c │ │ ├── furi_hal_gpio.h │ │ ├── furi_hal_i2c.c │ │ ├── furi_hal_i2c_config.c │ │ ├── furi_hal_i2c_config.h │ │ ├── furi_hal_i2c_types.h │ │ ├── furi_hal_ibutton.c │ │ ├── furi_hal_idle_timer.h │ │ ├── furi_hal_info.c │ │ ├── furi_hal_infrared.c │ │ ├── furi_hal_interrupt.c │ │ ├── furi_hal_interrupt.h │ │ ├── furi_hal_light.c │ │ ├── furi_hal_nfc.c │ │ ├── furi_hal_os.c │ │ ├── furi_hal_os.h │ │ ├── furi_hal_power.c │ │ ├── furi_hal_random.c │ │ ├── furi_hal_resources.c │ │ ├── furi_hal_resources.h │ │ ├── furi_hal_rfid.c │ │ ├── furi_hal_rtc.c │ │ ├── furi_hal_sd.c │ │ ├── furi_hal_speaker.c │ │ ├── furi_hal_spi.c │ │ ├── furi_hal_spi_config.c │ │ ├── furi_hal_spi_config.h │ │ ├── furi_hal_spi_types.h │ │ ├── furi_hal_subghz.c │ │ ├── furi_hal_uart.c │ │ ├── furi_hal_uart.h │ │ ├── furi_hal_usb.c │ │ ├── furi_hal_usb_cdc.c │ │ ├── furi_hal_usb_cdc_i.h │ │ ├── furi_hal_usb_hid.c │ │ ├── furi_hal_usb_i.h │ │ ├── furi_hal_usb_u2f.c │ │ ├── furi_hal_version.c │ │ └── furi_hal_vibro.c │ ├── startup_stm32wb55xx_cm4.s │ ├── stm32wb55xx_flash.ld │ ├── stm32wb55xx_ram_fw.ld │ └── target.mk │ └── furi_hal_include │ ├── furi_hal.h │ ├── furi_hal_bt.h │ ├── furi_hal_bt_hid.h │ ├── furi_hal_bt_serial.h │ ├── furi_hal_compress.h │ ├── furi_hal_crypto.h │ ├── furi_hal_debug.h │ ├── furi_hal_delay.h │ ├── furi_hal_i2c.h │ ├── furi_hal_ibutton.h │ ├── furi_hal_info.h │ ├── furi_hal_infrared.h │ ├── furi_hal_light.h │ ├── furi_hal_nfc.h │ ├── furi_hal_power.h │ ├── furi_hal_random.h │ ├── furi_hal_rfid.h │ ├── furi_hal_rtc.h │ ├── furi_hal_sd.h │ ├── furi_hal_speaker.h │ ├── furi_hal_spi.h │ ├── furi_hal_subghz.h │ ├── furi_hal_usb.h │ ├── furi_hal_usb_hid.h │ ├── furi_hal_usb_hid_u2f.h │ ├── furi_hal_version.h │ └── furi_hal_vibro.h ├── lib ├── FreeRTOS-glue │ ├── cmsis_os2.c │ ├── cmsis_os2.h │ ├── freertos_mpool.h │ ├── freertos_os2.h │ ├── os_tick.h │ └── task_control_block.h ├── ReadMe.md ├── ST25RFAL002 │ ├── doc │ │ ├── Release_Notes.html │ │ ├── ST25R3916_MisraComplianceReport.html │ │ ├── _htmresc │ │ │ └── st_logo.png │ │ └── rfal.chm │ ├── include │ │ ├── rfal_analogConfig.h │ │ ├── rfal_chip.h │ │ ├── rfal_crc.h │ │ ├── rfal_dpo.h │ │ ├── rfal_iso15693_2.h │ │ ├── rfal_isoDep.h │ │ ├── rfal_nfc.h │ │ ├── rfal_nfcDep.h │ │ ├── rfal_nfca.h │ │ ├── rfal_nfcb.h │ │ ├── rfal_nfcf.h │ │ ├── rfal_nfcv.h │ │ ├── rfal_rf.h │ │ ├── rfal_st25tb.h │ │ ├── rfal_st25xv.h │ │ ├── rfal_t1t.h │ │ ├── rfal_t2t.h │ │ └── rfal_t4t.h │ ├── platform.c │ ├── platform.h │ ├── source │ │ ├── custom_analog_config.c │ │ ├── rfal_analogConfig.c │ │ ├── rfal_crc.c │ │ ├── rfal_dpo.c │ │ ├── rfal_iso15693_2.c │ │ ├── rfal_isoDep.c │ │ ├── rfal_nfc.c │ │ ├── rfal_nfcDep.c │ │ ├── rfal_nfca.c │ │ ├── rfal_nfcb.c │ │ ├── rfal_nfcf.c │ │ ├── rfal_nfcv.c │ │ ├── rfal_st25tb.c │ │ ├── rfal_st25xv.c │ │ ├── rfal_t1t.c │ │ ├── rfal_t2t.c │ │ ├── rfal_t4t.c │ │ └── st25r3916 │ │ │ ├── rfal_analogConfigTbl.h │ │ │ ├── rfal_dpoTbl.h │ │ │ ├── rfal_features.h │ │ │ ├── rfal_rfst25r3916.c │ │ │ ├── st25r3916.c │ │ │ ├── st25r3916.h │ │ │ ├── st25r3916_aat.c │ │ │ ├── st25r3916_aat.h │ │ │ ├── st25r3916_com.c │ │ │ ├── st25r3916_com.h │ │ │ ├── st25r3916_irq.c │ │ │ ├── st25r3916_irq.h │ │ │ ├── st25r3916_led.c │ │ │ └── st25r3916_led.h │ ├── st_errno.h │ ├── timer.c │ ├── timer.h │ └── utils.h ├── app-scened-template │ ├── file_worker.c │ ├── file_worker.h │ ├── file_worker_cpp.cpp │ ├── file_worker_cpp.h │ ├── generic_scene.hpp │ ├── record_controller.hpp │ ├── scene_controller.hpp │ ├── text_store.cpp │ ├── text_store.h │ ├── typeindex_no_rtti.hpp │ ├── view_controller.hpp │ └── view_modules │ │ ├── byte_input_vm.cpp │ │ ├── byte_input_vm.h │ │ ├── dialog_ex_vm.cpp │ │ ├── dialog_ex_vm.h │ │ ├── generic_view_module.h │ │ ├── popup_vm.cpp │ │ ├── popup_vm.h │ │ ├── submenu_vm.cpp │ │ ├── submenu_vm.h │ │ ├── text_input_vm.cpp │ │ └── text_input_vm.h ├── app-template │ ├── app_template.cpp │ └── app_template.h ├── callback-connector │ └── callback-connector.h ├── drivers │ ├── bq25896.c │ ├── bq25896.h │ ├── bq25896_reg.h │ ├── bq27220.c │ ├── bq27220.h │ ├── bq27220_reg.h │ ├── cc1101.c │ ├── cc1101.h │ ├── cc1101_regs.h │ ├── lp5562.c │ ├── lp5562.h │ └── lp5562_reg.h ├── fatfs │ ├── diskio.c │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── ff_gen_drv.c │ ├── ff_gen_drv.h │ ├── ffconf_template.h │ ├── integer.h │ └── option │ │ ├── cc932.c │ │ ├── cc936.c │ │ ├── cc949.c │ │ ├── cc950.c │ │ ├── ccsbcs.c │ │ └── unicode.c ├── flipper_format │ ├── flipper_format.c │ ├── flipper_format.h │ ├── flipper_format_i.h │ ├── flipper_format_stream.c │ ├── flipper_format_stream.h │ └── flipper_format_stream_i.h ├── fnv1a-hash │ ├── fnv1a-hash.c │ └── fnv1a-hash.h ├── heatshrink │ ├── heatshrink_common.h │ ├── heatshrink_config.h │ ├── heatshrink_decoder.c │ ├── heatshrink_decoder.h │ ├── heatshrink_encoder.c │ └── heatshrink_encoder.h ├── infrared │ ├── encoder_decoder │ │ ├── common │ │ │ ├── infrared_common_decoder.c │ │ │ ├── infrared_common_encoder.c │ │ │ ├── infrared_common_i.h │ │ │ └── infrared_common_protocol_defs.c │ │ ├── infrared.c │ │ ├── infrared.h │ │ ├── infrared_i.h │ │ ├── infrared_protocol_defs_i.h │ │ ├── nec │ │ │ ├── infrared_decoder_nec.c │ │ │ ├── infrared_encoder_nec.c │ │ │ └── infrared_nec_spec.c │ │ ├── rc5 │ │ │ ├── infrared_decoder_rc5.c │ │ │ ├── infrared_encoder_rc5.c │ │ │ └── infrared_rc5_spec.c │ │ ├── rc6 │ │ │ ├── infrared_decoder_rc6.c │ │ │ ├── infrared_encoder_rc6.c │ │ │ └── infrared_rc6_spec.c │ │ ├── samsung │ │ │ ├── infrared_decoder_samsung.c │ │ │ ├── infrared_encoder_samsung.c │ │ │ └── infrared_samsung_spec.c │ │ └── sirc │ │ │ ├── infrared_decoder_sirc.c │ │ │ ├── infrared_encoder_sirc.c │ │ │ └── infrared_sirc_spec.c │ └── worker │ │ ├── infrared_transmit.c │ │ ├── infrared_transmit.h │ │ ├── infrared_worker.c │ │ └── infrared_worker.h ├── lfs_config.h ├── lib.mk ├── micro-ecc │ ├── LICENSE.txt │ ├── README.md │ ├── asm_arm.inc │ ├── asm_arm_mult_square.inc │ ├── asm_arm_mult_square_umaal.inc │ ├── curve-specific.inc │ ├── platform-specific.inc │ ├── types.h │ ├── uECC.c │ ├── uECC.h │ └── uECC_vli.h ├── nfc_protocols │ ├── crypto1.c │ ├── crypto1.h │ ├── emv.c │ ├── emv.h │ ├── mifare_classic.c │ ├── mifare_classic.h │ ├── mifare_common.c │ ├── mifare_common.h │ ├── mifare_desfire.c │ ├── mifare_desfire.h │ ├── mifare_ultralight.c │ ├── mifare_ultralight.h │ ├── nfc_util.c │ ├── nfc_util.h │ ├── nfca.c │ └── nfca.h ├── one_wire │ ├── ibutton │ │ ├── encoder │ │ │ ├── encoder_cyfral.c │ │ │ ├── encoder_cyfral.h │ │ │ ├── encoder_metakom.c │ │ │ └── encoder_metakom.h │ │ ├── ibutton_key.c │ │ ├── ibutton_key.h │ │ ├── ibutton_key_command.h │ │ ├── ibutton_worker.c │ │ ├── ibutton_worker.h │ │ ├── ibutton_worker_i.h │ │ ├── ibutton_worker_modes.c │ │ ├── ibutton_writer.c │ │ ├── ibutton_writer.h │ │ └── pulse_protocols │ │ │ ├── protocol_cyfral.c │ │ │ ├── protocol_cyfral.h │ │ │ ├── protocol_metakom.c │ │ │ └── protocol_metakom.h │ ├── maxim_crc.c │ ├── maxim_crc.h │ ├── one_wire_device.c │ ├── one_wire_device.h │ ├── one_wire_host.c │ ├── one_wire_host.h │ ├── one_wire_host_timing.h │ ├── one_wire_slave.c │ ├── one_wire_slave.h │ ├── one_wire_slave_i.h │ └── pulse_protocols │ │ ├── pulse_decoder.c │ │ ├── pulse_decoder.h │ │ ├── pulse_glue.c │ │ ├── pulse_glue.h │ │ ├── pulse_protocol.c │ │ └── pulse_protocol.h ├── qrcode │ ├── qrcode.c │ └── qrcode.h ├── subghz │ ├── blocks │ │ ├── const.c │ │ ├── const.h │ │ ├── decoder.c │ │ ├── decoder.h │ │ ├── encoder.c │ │ ├── encoder.h │ │ ├── generic.c │ │ ├── generic.h │ │ ├── math.c │ │ └── math.h │ ├── environment.c │ ├── environment.h │ ├── protocols │ │ ├── base.c │ │ ├── base.h │ │ ├── came.c │ │ ├── came.h │ │ ├── came_atomo.c │ │ ├── came_atomo.h │ │ ├── came_twee.c │ │ ├── came_twee.h │ │ ├── faac_slh.c │ │ ├── faac_slh.h │ │ ├── firefly.c │ │ ├── firefly.h │ │ ├── gate_tx.c │ │ ├── gate_tx.h │ │ ├── holtek.c │ │ ├── holtek.h │ │ ├── hormann.c │ │ ├── hormann.h │ │ ├── ido.c │ │ ├── ido.h │ │ ├── keeloq.c │ │ ├── keeloq.h │ │ ├── keeloq_common.c │ │ ├── keeloq_common.h │ │ ├── kia.c │ │ ├── kia.h │ │ ├── megacode.c │ │ ├── megacode.h │ │ ├── nero_radio.c │ │ ├── nero_radio.h │ │ ├── nero_sketch.c │ │ ├── nero_sketch.h │ │ ├── nice_flo.c │ │ ├── nice_flo.h │ │ ├── nice_flor_s.c │ │ ├── nice_flor_s.h │ │ ├── princeton.c │ │ ├── princeton.h │ │ ├── princeton_for_testing.c │ │ ├── princeton_for_testing.h │ │ ├── raw.c │ │ ├── raw.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── scher_khan.c │ │ ├── scher_khan.h │ │ ├── secplus_v1.c │ │ ├── secplus_v1.h │ │ ├── secplus_v2.c │ │ ├── secplus_v2.h │ │ ├── somfy_keytis.c │ │ ├── somfy_keytis.h │ │ ├── somfy_telis.c │ │ ├── somfy_telis.h │ │ ├── star_line.c │ │ └── star_line.h │ ├── receiver.c │ ├── receiver.h │ ├── subghz_file_encoder_worker.c │ ├── subghz_file_encoder_worker.h │ ├── subghz_keystore.c │ ├── subghz_keystore.h │ ├── subghz_tx_rx_worker.c │ ├── subghz_tx_rx_worker.h │ ├── subghz_worker.c │ ├── subghz_worker.h │ ├── transmitter.c │ ├── transmitter.h │ └── types.h ├── toolbox │ ├── args.c │ ├── args.h │ ├── crc32_calc.c │ ├── crc32_calc.h │ ├── dir_walk.c │ ├── dir_walk.h │ ├── hex.c │ ├── hex.h │ ├── hmac_sha256.c │ ├── hmac_sha256.h │ ├── level_duration.h │ ├── manchester_decoder.c │ ├── manchester_decoder.h │ ├── manchester_encoder.c │ ├── manchester_encoder.h │ ├── md5.c │ ├── md5.h │ ├── path.c │ ├── path.h │ ├── random_name.c │ ├── random_name.h │ ├── saved_struct.c │ ├── saved_struct.h │ ├── sha256.c │ ├── sha256.h │ ├── stream │ │ ├── file_stream.c │ │ ├── file_stream.h │ │ ├── stream.c │ │ ├── stream.h │ │ ├── stream_i.h │ │ ├── string_stream.c │ │ └── string_stream.h │ ├── tar │ │ ├── tar_archive.c │ │ └── tar_archive.h │ ├── value_index.c │ ├── value_index.h │ ├── version.c │ └── version.h ├── u8g2 │ ├── u8g2.h │ ├── u8g2_bitmap.c │ ├── u8g2_box.c │ ├── u8g2_buffer.c │ ├── u8g2_circle.c │ ├── u8g2_d_memory.c │ ├── u8g2_font.c │ ├── u8g2_fonts.c │ ├── u8g2_glue.c │ ├── u8g2_glue.h │ ├── u8g2_hvline.c │ ├── u8g2_intersection.c │ ├── u8g2_line.c │ ├── u8g2_ll_hvline.c │ ├── u8g2_setup.c │ ├── u8x8.h │ ├── u8x8_8x8.c │ ├── u8x8_byte.c │ ├── u8x8_cad.c │ ├── u8x8_display.c │ ├── u8x8_gpio.c │ └── u8x8_setup.c └── update_util │ ├── dfu_file.c │ ├── dfu_file.h │ ├── dfu_headers.h │ ├── lfs_backup.c │ ├── lfs_backup.h │ ├── update_manifest.c │ ├── update_manifest.h │ ├── update_operation.c │ └── update_operation.h ├── make ├── base.mk ├── defaults.mk ├── freertos-heap.mk ├── git.mk ├── rules.mk └── toolchain.mk └── scripts ├── ReadMe.md ├── assets.py ├── bin2dfu.py ├── compile_db.py ├── dist.py ├── flash.py ├── flipper ├── __init__.py ├── app.py ├── assets │ ├── __init__.py │ ├── copro.py │ ├── coprobin.py │ ├── dolphin.py │ ├── icon.py │ ├── manifest.py │ ├── obdata.py │ └── templates │ │ ├── dolphin.c.tmpl │ │ └── dolphin.h.tmpl ├── cube.py ├── storage.py └── utils │ ├── __init__.py │ ├── fff.py │ ├── fstree.py │ └── templite.py ├── guruguru.py ├── lint.py ├── meta.py ├── ob.data ├── ob.py ├── otp.py ├── storage.py └── update.py /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/assets/Born2bSportyV2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/.github/assets/Born2bSportyV2.ttf -------------------------------------------------------------------------------- /.github/assets/latest-firmware-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/.github/assets/latest-firmware-template.png -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | cask "gcc-arm-embedded" 2 | brew "protobuf" 3 | brew "gdb" 4 | brew "heatshrink" 5 | brew "open-ocd" 6 | brew "clang-format" 7 | brew "dfu-util" 8 | brew "imagemagick" 9 | -------------------------------------------------------------------------------- /applications/archive/archive.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | typedef struct ArchiveApp ArchiveApp; 4 | -------------------------------------------------------------------------------- /applications/archive/scenes/archive_scene_config.h: -------------------------------------------------------------------------------- 1 | ADD_SCENE(archive, browser, Browser) 2 | ADD_SCENE(archive, rename, Rename) 3 | ADD_SCENE(archive, delete, Delete) 4 | -------------------------------------------------------------------------------- /applications/bad_usb/bad_usb_app.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifdef __cplusplus 4 | extern "C" { 5 | #endif 6 | 7 | typedef struct BadUsbApp BadUsbApp; 8 | 9 | #ifdef __cplusplus 10 | } 11 | #endif 12 | -------------------------------------------------------------------------------- /applications/bad_usb/scenes/bad_usb_scene_config.h: -------------------------------------------------------------------------------- 1 | ADD_SCENE(bad_usb, file_select, FileSelect) 2 | ADD_SCENE(bad_usb, work, Work) 3 | ADD_SCENE(bad_usb, error, Error) 4 | -------------------------------------------------------------------------------- /applications/cli/cli_commands.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "cli_i.h" 4 | 5 | void cli_commands_init(Cli* cli); 6 | -------------------------------------------------------------------------------- /applications/debug_tools/display_test/display_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /applications/desktop/desktop.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | typedef struct Desktop Desktop; 4 | -------------------------------------------------------------------------------- /applications/desktop/scenes/desktop_scene_i.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define SCENE_LOCKED_FIRST_ENTER 0 4 | #define SCENE_LOCKED_REPEAT_ENTER 1 5 | -------------------------------------------------------------------------------- /applications/gpio/gpio_app.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifdef __cplusplus 4 | extern "C" { 5 | #endif 6 | 7 | typedef struct GpioApp GpioApp; 8 | 9 | #ifdef __cplusplus 10 | } 11 | #endif 12 | -------------------------------------------------------------------------------- /applications/ibutton/ibutton.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | typedef struct iButton iButton; 4 | -------------------------------------------------------------------------------- /applications/nfc/nfc.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | typedef struct Nfc Nfc; 4 | -------------------------------------------------------------------------------- /applications/power/power_cli.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void power_on_system_start(); 4 | -------------------------------------------------------------------------------- /applications/subghz/subghz.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | typedef struct SubGhz SubGhz; 4 | -------------------------------------------------------------------------------- /applications/subghz/subghz_cli.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | void subghz_on_system_start(); 6 | -------------------------------------------------------------------------------- /applications/u2f/scenes/u2f_scene_config.h: -------------------------------------------------------------------------------- 1 | ADD_SCENE(u2f, main, Main) 2 | ADD_SCENE(u2f, error, Error) 3 | -------------------------------------------------------------------------------- /applications/u2f/u2f_app.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #ifdef __cplusplus 4 | extern "C" { 5 | #endif 6 | 7 | typedef struct U2fApp U2fApp; 8 | 9 | #ifdef __cplusplus 10 | } 11 | #endif 12 | -------------------------------------------------------------------------------- /applications/updater/scenes/updater_scene_config.h: -------------------------------------------------------------------------------- 1 | ADD_SCENE(updater, main, Main) 2 | #ifndef FURI_RAM_EXEC 3 | ADD_SCENE(updater, loadcfg, LoadCfg) 4 | ADD_SCENE(updater, error, Error) 5 | #endif 6 | -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | /headers 2 | /core2_firmware 3 | -------------------------------------------------------------------------------- /assets/compiled/protobuf_version.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define PROTOBUF_MAJOR_VERSION 0 3 | #define PROTOBUF_MINOR_VERSION 7 4 | -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NewMail_128x51/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NewMail_128x51/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NewMail_128x51/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NewMail_128x51/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NewMail_128x51/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NewMail_128x51/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NewMail_128x51/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NewMail_128x51/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NoDb_128x51/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NoDb_128x51/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NoDb_128x51/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NoDb_128x51/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NoDb_128x51/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NoDb_128x51/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_NoDb_128x51/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_NoDb_128x51/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_SdBad_128x51/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_SdBad_128x51/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_SdBad_128x51/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_SdBad_128x51/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_SdOk_128x51/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_SdOk_128x51/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_SdOk_128x51/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_SdOk_128x51/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_SdOk_128x51/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_SdOk_128x51/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_SdOk_128x51/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_SdOk_128x51/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_Url_128x51/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_Url_128x51/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_Url_128x51/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_Url_128x51/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_Url_128x51/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_Url_128x51/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/blocking/L0_Url_128x51/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/blocking/L0_Url_128x51/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Boxing_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Boxing_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Boxing_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Boxing_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Boxing_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Boxing_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Boxing_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Boxing_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Boxing_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Boxing_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Boxing_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Boxing_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Boxing_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Boxing_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Cry_128x64/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Cry_128x64/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_10.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_11.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_12.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_13.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_14.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_15.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_16.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_17.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_18.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_8.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Furippa1_128x64/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Furippa1_128x64/frame_9.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Laptop_128x51/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Laptop_128x51/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_10.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_11.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_12.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_13.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_8.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Mad_fist_128x64/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Mad_fist_128x64/frame_9.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Read_books_128x64/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Read_books_128x64/frame_8.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_10.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_11.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_8.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Recording_128x51/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Recording_128x51/frame_9.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Sleep_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Sleep_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Sleep_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Sleep_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Sleep_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Sleep_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Sleep_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Sleep_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Waves_128x50/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Waves_128x50/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Waves_128x50/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Waves_128x50/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Waves_128x50/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Waves_128x50/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L1_Waves_128x50/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L1_Waves_128x50/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_10.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_11.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_12.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_13.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_14.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_15.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_16.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_17.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_18.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_8.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Furippa2_128x64/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Furippa2_128x64/frame_9.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Hacking_pc_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Hacking_pc_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Hacking_pc_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Hacking_pc_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Hacking_pc_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Hacking_pc_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Hacking_pc_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Hacking_pc_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Hacking_pc_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Hacking_pc_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_10.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_8.png -------------------------------------------------------------------------------- /assets/dolphin/external/L2_Soldering_128x64/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L2_Soldering_128x64/frame_9.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_10.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_11.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_12.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_13.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_14.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_15.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_16.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_17.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_18.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_7.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_8.png -------------------------------------------------------------------------------- /assets/dolphin/external/L3_Furippa3_128x64/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/external/L3_Furippa3_128x64/frame_9.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_BadBattery_128x47/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_BadBattery_128x47/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_BadBattery_128x47/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_BadBattery_128x47/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_NoSd_128x49/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_NoSd_128x49/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_NoSd_128x49/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_NoSd_128x49/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_NoSd_128x49/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_NoSd_128x49/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_NoSd_128x49/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_NoSd_128x49/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_NoSd_128x49/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_NoSd_128x49/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_NoSd_128x49/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_NoSd_128x49/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_0.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_1.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_2.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_3.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_4.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_5.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_6.png -------------------------------------------------------------------------------- /assets/dolphin/internal/L1_Tv_128x47/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/dolphin/internal/L1_Tv_128x47/frame_7.png -------------------------------------------------------------------------------- /assets/icons/About/Certification1_103x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/About/Certification1_103x23.png -------------------------------------------------------------------------------- /assets/icons/About/Certification2_119x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/About/Certification2_119x30.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_00.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_01.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_02.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_03.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_04.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_05.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_06.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_07.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_08.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_09.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup1_128x64/frame_10.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup1_128x64/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_00.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_01.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_02.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_03.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_04.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_05.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_06.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_07.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_08.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_09.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Animations/Levelup2_128x64/frame_10.png -------------------------------------------------------------------------------- /assets/icons/Animations/Levelup2_128x64/frame_rate: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /assets/icons/Archive/125_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/125_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/Nfc_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/Nfc_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/badusb_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/badusb_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/ble_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/ble_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/dir_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/dir_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/ibutt_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/ibutt_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/ir_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/ir_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/sub1_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/sub1_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/u2f_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/u2f_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/unknown_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/unknown_10px.png -------------------------------------------------------------------------------- /assets/icons/Archive/update_10px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Archive/update_10px.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Ble_connected_38x34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Ble_connected_38x34.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Ble_disconnected_24x34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Ble_disconnected_24x34.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Button_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Button_18x18.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Circles_47x47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Circles_47x47.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Ok_btn_9x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Ok_btn_9x9.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Pressed_Button_13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Pressed_Button_13x13.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Space_65x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Space_65x18.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Voldwn_6x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Voldwn_6x6.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_HID/Volup_8x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_HID/Volup_8x6.png -------------------------------------------------------------------------------- /assets/icons/BLE/BLE_Pairing_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BLE/BLE_Pairing_128x64.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Clock_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/Clock_18x18.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Error_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/Error_18x18.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/EviSmile1_18x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/EviSmile1_18x21.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/EviSmile2_18x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/EviSmile2_18x21.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/EviWaiting1_18x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/EviWaiting1_18x21.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/EviWaiting2_18x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/EviWaiting2_18x21.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Percent_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/Percent_10x14.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/Smile_18x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/Smile_18x18.png -------------------------------------------------------------------------------- /assets/icons/BadUsb/UsbTree_48x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/BadUsb/UsbTree_48x22.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonCenter_7x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/ButtonCenter_7x7.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonDown_7x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/ButtonDown_7x4.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonLeftSmall_3x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/ButtonLeftSmall_3x5.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonLeft_4x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/ButtonLeft_4x7.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonRightSmall_3x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/ButtonRightSmall_3x5.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonRight_4x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/ButtonRight_4x7.png -------------------------------------------------------------------------------- /assets/icons/Common/ButtonUp_7x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/ButtonUp_7x4.png -------------------------------------------------------------------------------- /assets/icons/Common/DFU_128x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/DFU_128x50.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Loading_24/frame_01.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Loading_24/frame_02.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Loading_24/frame_03.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Loading_24/frame_04.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Loading_24/frame_05.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Loading_24/frame_06.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Loading_24/frame_07.png -------------------------------------------------------------------------------- /assets/icons/Common/Loading_24/frame_rate: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /assets/icons/Common/Warning_30x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Common/Warning_30x23.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart0_70x53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart0_70x53.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart1_59x53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart1_59x53.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart2_59x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart2_59x51.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart3_57x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart3_57x48.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart4_67x53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart4_67x53.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart5_54x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart5_54x49.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart6_58x54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart6_58x54.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart7_61x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart7_61x51.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinFirstStart8_56x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinFirstStart8_56x51.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/DolphinOkay_41x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/DolphinOkay_41x43.png -------------------------------------------------------------------------------- /assets/icons/Dolphin/Flipper_young_80x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Dolphin/Flipper_young_80x60.png -------------------------------------------------------------------------------- /assets/icons/GPIO/ArrowDownEmpty_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/GPIO/ArrowDownEmpty_14x15.png -------------------------------------------------------------------------------- /assets/icons/GPIO/ArrowDownFilled_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/GPIO/ArrowDownFilled_14x15.png -------------------------------------------------------------------------------- /assets/icons/GPIO/ArrowUpEmpty_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/GPIO/ArrowUpEmpty_14x15.png -------------------------------------------------------------------------------- /assets/icons/GPIO/ArrowUpFilled_14x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/GPIO/ArrowUpFilled_14x15.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Back_15x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Back_15x10.png -------------------------------------------------------------------------------- /assets/icons/Infrared/DolphinReadingSuccess_59x63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/DolphinReadingSuccess_59x63.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Down_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Down_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Down_hvr_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Down_hvr_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Fill-marker_7x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Fill-marker_7x7.png -------------------------------------------------------------------------------- /assets/icons/Infrared/InfraredArrowDown_4x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/InfraredArrowDown_4x8.png -------------------------------------------------------------------------------- /assets/icons/Infrared/InfraredArrowUp_4x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/InfraredArrowUp_4x8.png -------------------------------------------------------------------------------- /assets/icons/Infrared/InfraredLearnShort_128x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/InfraredLearnShort_128x31.png -------------------------------------------------------------------------------- /assets/icons/Infrared/InfraredLearn_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/InfraredLearn_128x64.png -------------------------------------------------------------------------------- /assets/icons/Infrared/InfraredSendShort_128x34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/InfraredSendShort_128x34.png -------------------------------------------------------------------------------- /assets/icons/Infrared/InfraredSend_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/InfraredSend_128x64.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Mute_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Mute_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Mute_hvr_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Mute_hvr_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Power_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Power_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Power_hvr_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Power_hvr_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Up_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Up_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Up_hvr_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Up_hvr_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Vol_down_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Vol_down_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Vol_down_hvr_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Vol_down_hvr_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Vol_up_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Vol_up_25x27.png -------------------------------------------------------------------------------- /assets/icons/Infrared/Vol_up_hvr_25x27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Infrared/Vol_up_hvr_25x27.png -------------------------------------------------------------------------------- /assets/icons/Interface/Back3_45x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Interface/Back3_45x8.png -------------------------------------------------------------------------------- /assets/icons/Interface/DoorLeft_70x55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Interface/DoorLeft_70x55.png -------------------------------------------------------------------------------- /assets/icons/Interface/DoorLocked_10x56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Interface/DoorLocked_10x56.png -------------------------------------------------------------------------------- /assets/icons/Interface/DoorRight_70x55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Interface/DoorRight_70x55.png -------------------------------------------------------------------------------- /assets/icons/Interface/PassportBottom_128x17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Interface/PassportBottom_128x17.png -------------------------------------------------------------------------------- /assets/icons/Interface/PassportLeft_6x47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Interface/PassportLeft_6x47.png -------------------------------------------------------------------------------- /assets/icons/Interface/WarningDolphin_45x42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Interface/WarningDolphin_45x42.png -------------------------------------------------------------------------------- /assets/icons/Keyboard/KeyBackspaceSelected_16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Keyboard/KeyBackspaceSelected_16x9.png -------------------------------------------------------------------------------- /assets/icons/Keyboard/KeyBackspace_16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Keyboard/KeyBackspace_16x9.png -------------------------------------------------------------------------------- /assets/icons/Keyboard/KeySaveSelected_24x11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Keyboard/KeySaveSelected_24x11.png -------------------------------------------------------------------------------- /assets/icons/Keyboard/KeySave_24x11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Keyboard/KeySave_24x11.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/125khz_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/125khz_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/125khz_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/125khz_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/125khz_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/125khz_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/125khz_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/125khz_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/125khz_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_08.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_09.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_10.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/BadUsb_14/frame_11.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/BadUsb_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Bluetooth_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Bluetooth_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Bluetooth_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Bluetooth_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Bluetooth_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Bluetooth_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Bluetooth_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Bluetooth_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Bluetooth_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Bluetooth_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Bluetooth_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Bluetooth_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Bluetooth_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Debug_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Debug_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Debug_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Debug_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Debug_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Debug_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Debug_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Debug_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Debug_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_08.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_09.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/FileManager_14/frame_10.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/FileManager_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/GPIO_14/frame_08.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/GPIO_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_08.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Games_14/frame_09.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Games_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Infrared_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Infrared_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Infrared_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Infrared_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Infrared_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Infrared_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Infrared_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/NFC_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/NFC_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/NFC_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/NFC_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/NFC_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/NFC_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/NFC_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/NFC_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/NFC_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_08.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_09.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Passport_14/frame_10.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Passport_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_08.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Plugins_14/frame_09.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Plugins_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Power_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Power_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Power_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_08.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_09.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Settings_14/frame_10.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Settings_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Sub1ghz_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Sub1ghz_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Sub1ghz_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Sub1ghz_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Sub1ghz_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Sub1ghz_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Sub1ghz_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/Tamagotchi_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Tamagotchi_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Tamagotchi_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Tamagotchi_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Tamagotchi_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Tamagotchi_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Tamagotchi_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Tamagotchi_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Tamagotchi_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Tamagotchi_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Tamagotchi_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/Tamagotchi_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/Tamagotchi_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/U2F_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/U2F_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/U2F_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/U2F_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/U2F_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/U2F_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/U2F_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/U2F_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/U2F_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/UniversalRemote_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/iButton_14/frame_01.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/iButton_14/frame_02.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/iButton_14/frame_03.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/iButton_14/frame_04.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/iButton_14/frame_05.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/iButton_14/frame_06.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/MainMenu/iButton_14/frame_07.png -------------------------------------------------------------------------------- /assets/icons/MainMenu/iButton_14/frame_rate: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /assets/icons/NFC/Detailed_chip_17x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/NFC/Detailed_chip_17x13.png -------------------------------------------------------------------------------- /assets/icons/NFC/Medium-chip-22x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/NFC/Medium-chip-22x21.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_arrow_down_7x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_arrow_down_7x9.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_arrow_left_9x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_arrow_left_9x7.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_arrow_right_9x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_arrow_right_9x7.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_arrow_up7x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_arrow_up7x9.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_attention_dpad_29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_attention_dpad_29x29.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_back_arrow_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_back_arrow_10x8.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_back_full_40x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_back_full_40x8.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_cell_13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_cell_13x13.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_pointer_5x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_pointer_5x3.png -------------------------------------------------------------------------------- /assets/icons/PIN/Pin_star_7x7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/PIN/Pin_star_7x7.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_bad1_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_bad1_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_bad2_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_bad2_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_bad3_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_bad3_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_bottom_128x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_bottom_128x18.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_happy1_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_happy1_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_happy2_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_happy2_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_happy3_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_happy3_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_left_6x46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_left_6x46.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_okay1_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_okay1_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_okay2_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_okay2_46x49.png -------------------------------------------------------------------------------- /assets/icons/Passport/passport_okay3_46x49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Passport/passport_okay3_46x49.png -------------------------------------------------------------------------------- /assets/icons/Power/BatteryBody_52x28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/BatteryBody_52x28.png -------------------------------------------------------------------------------- /assets/icons/Power/Battery_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/Battery_16x16.png -------------------------------------------------------------------------------- /assets/icons/Power/FaceCharging_29x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/FaceCharging_29x14.png -------------------------------------------------------------------------------- /assets/icons/Power/FaceConfused_29x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/FaceConfused_29x14.png -------------------------------------------------------------------------------- /assets/icons/Power/FaceNopower_29x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/FaceNopower_29x14.png -------------------------------------------------------------------------------- /assets/icons/Power/FaceNormal_29x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/FaceNormal_29x14.png -------------------------------------------------------------------------------- /assets/icons/Power/Health_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/Health_16x16.png -------------------------------------------------------------------------------- /assets/icons/Power/Temperature_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/Temperature_16x16.png -------------------------------------------------------------------------------- /assets/icons/Power/Voltage_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Power/Voltage_16x16.png -------------------------------------------------------------------------------- /assets/icons/RFID/RFIDBigChip_37x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/RFID/RFIDBigChip_37x36.png -------------------------------------------------------------------------------- /assets/icons/RFID/RFIDDolphinReceive_97x61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/RFID/RFIDDolphinReceive_97x61.png -------------------------------------------------------------------------------- /assets/icons/RFID/RFIDDolphinSend_97x61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/RFID/RFIDDolphinSend_97x61.png -------------------------------------------------------------------------------- /assets/icons/RFID/RFIDDolphinSuccess_108x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/RFID/RFIDDolphinSuccess_108x57.png -------------------------------------------------------------------------------- /assets/icons/SDCard/SDError_43x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SDCard/SDError_43x35.png -------------------------------------------------------------------------------- /assets/icons/SDCard/SDQuestion_35x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SDCard/SDQuestion_35x43.png -------------------------------------------------------------------------------- /assets/icons/Settings/Cry_dolph_55x52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Settings/Cry_dolph_55x52.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Attention_5x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Attention_5x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Background_128x11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Background_128x11.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/BadUsb_9x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/BadUsb_9x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Battery_19x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Battery_19x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Battery_26x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Battery_26x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Bluetooth_Connected_16x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Bluetooth_Connected_16x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Bluetooth_Idle_5x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Bluetooth_Idle_5x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Charging-lightning_9x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Charging-lightning_9x10.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Charging-lightning_mask_9x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Charging-lightning_mask_9x10.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/Lock_8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/Lock_8x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/PlaceholderL_11x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/PlaceholderL_11x13.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/PlaceholderR_30x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/PlaceholderR_30x13.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/SDcardFail_11x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/SDcardFail_11x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/SDcardMounted_11x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/SDcardMounted_11x8.png -------------------------------------------------------------------------------- /assets/icons/StatusBar/USBConnected_15x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/StatusBar/USBConnected_15x8.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Lock_7x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SubGhz/Lock_7x8.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/MHz_25x11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SubGhz/MHz_25x11.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Quest_7x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SubGhz/Quest_7x8.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Scanning_123x52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SubGhz/Scanning_123x52.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/Unlock_7x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SubGhz/Unlock_7x8.png -------------------------------------------------------------------------------- /assets/icons/SubGhz/remote-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/SubGhz/remote-icon.png -------------------------------------------------------------------------------- /assets/icons/U2F/Auth_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/U2F/Auth_62x31.png -------------------------------------------------------------------------------- /assets/icons/U2F/Connect_me_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/U2F/Connect_me_62x31.png -------------------------------------------------------------------------------- /assets/icons/U2F/Connected_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/U2F/Connected_62x31.png -------------------------------------------------------------------------------- /assets/icons/U2F/Drive_112x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/U2F/Drive_112x35.png -------------------------------------------------------------------------------- /assets/icons/U2F/Error_62x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/U2F/Error_62x31.png -------------------------------------------------------------------------------- /assets/icons/Update/Updating_32x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/Update/Updating_32x40.png -------------------------------------------------------------------------------- /assets/icons/iButton/DolphinExcited_64x63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/iButton/DolphinExcited_64x63.png -------------------------------------------------------------------------------- /assets/icons/iButton/DolphinMafia_115x62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/iButton/DolphinMafia_115x62.png -------------------------------------------------------------------------------- /assets/icons/iButton/DolphinNice_96x59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/iButton/DolphinNice_96x59.png -------------------------------------------------------------------------------- /assets/icons/iButton/DolphinWait_61x59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/iButton/DolphinWait_61x59.png -------------------------------------------------------------------------------- /assets/icons/iButton/iButtonDolphinSuccess_109x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/iButton/iButtonDolphinSuccess_109x60.png -------------------------------------------------------------------------------- /assets/icons/iButton/iButtonKey_49x44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/icons/iButton/iButtonKey_49x44.png -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Boxing_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Boxing_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Boxing_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Boxing_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Boxing_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Boxing_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Boxing_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Boxing_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Boxing_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Boxing_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Boxing_128x64/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Boxing_128x64/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Boxing_128x64/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Boxing_128x64/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Cry_128x64/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Cry_128x64/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_10.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_10.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_11.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_11.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_12.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_12.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_13.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_13.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_14.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_14.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_15.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_15.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_16.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_16.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_17.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_17.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_18.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_18.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_8.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_8.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Furippa1_128x64/frame_9.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Furippa1_128x64/frame_9.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Laptop_128x51/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Laptop_128x51/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_10.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_10.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_11.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_11.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_12.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_12.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_13.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_13.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_8.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_8.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Mad_fist_128x64/frame_9.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Mad_fist_128x64/frame_9.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Read_books_128x64/frame_8.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Read_books_128x64/frame_8.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_10.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_10.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_11.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_11.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_8.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_8.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Recording_128x51/frame_9.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Recording_128x51/frame_9.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Sleep_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Sleep_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Sleep_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Sleep_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Sleep_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Sleep_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Sleep_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Sleep_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Waves_128x50/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Waves_128x50/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Waves_128x50/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Waves_128x50/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Waves_128x50/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Waves_128x50/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L1_Waves_128x50/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L1_Waves_128x50/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_10.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_10.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_11.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_11.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_12.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_12.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_13.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_13.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_14.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_14.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_15.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_15.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_16.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_16.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_17.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_17.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_18.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_18.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_8.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_8.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Furippa2_128x64/frame_9.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Furippa2_128x64/frame_9.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Hacking_pc_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Hacking_pc_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Hacking_pc_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Hacking_pc_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Hacking_pc_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Hacking_pc_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Hacking_pc_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Hacking_pc_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Hacking_pc_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Hacking_pc_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_1.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_10.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_10.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_2.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_3.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_4.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_4.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_5.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_5.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_6.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_6.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_7.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_7.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_8.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_8.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L2_Soldering_128x64/frame_9.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L2_Soldering_128x64/frame_9.bm -------------------------------------------------------------------------------- /assets/resources/dolphin/L3_Furippa3_128x64/frame_0.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/dolphin/L3_Furippa3_128x64/frame_0.bm -------------------------------------------------------------------------------- /assets/resources/u2f/assets/cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/assets/resources/u2f/assets/cert.der -------------------------------------------------------------------------------- /assets/unit_tests/subghz/came.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz Key File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: CAME 6 | Bit: 24 7 | Key: 00 00 00 00 00 6A B2 34 8 | -------------------------------------------------------------------------------- /assets/unit_tests/subghz/doorhan.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz Key File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: KeeLoq 6 | Bit: 64 7 | Key: 48 50 F0 72 33 78 95 14 8 | -------------------------------------------------------------------------------- /assets/unit_tests/subghz/firely.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz Key File 2 | Version: 1 3 | Frequency: 300000000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: Firefly 6 | Bit: 10 7 | Key: 00 00 00 00 00 00 01 E4 8 | -------------------------------------------------------------------------------- /assets/unit_tests/subghz/gate_tx.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz Key File 2 | Version: 1 3 | Frequency: 433920000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: GateTX 6 | Bit: 24 7 | Key: 00 00 00 00 00 02 8F F3 8 | -------------------------------------------------------------------------------- /assets/unit_tests/subghz/holtek.sub: -------------------------------------------------------------------------------- 1 | Filetype: Flipper SubGhz Key File 2 | Version: 1 3 | Frequency: 418000000 4 | Preset: FuriHalSubGhzPresetOok650Async 5 | Protocol: Holtek 6 | Bit: 40 7 | Key: 00 00 00 50 00 00 AA BA 8 | -------------------------------------------------------------------------------- /core/flipper.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void flipper_init(); 4 | -------------------------------------------------------------------------------- /debug/FreeRTOS/FreeRTOSgdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/debug/FreeRTOS/FreeRTOSgdb/__init__.py -------------------------------------------------------------------------------- /debug/PyCortexMDebug/cmdebug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/debug/PyCortexMDebug/cmdebug/__init__.py -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -z "$1" ]; then 4 | bash 5 | else 6 | echo "Running $1" 7 | set -ex 8 | bash -c "$1" 9 | fi 10 | -------------------------------------------------------------------------------- /lib/ST25RFAL002/doc/_htmresc/st_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/lib/ST25RFAL002/doc/_htmresc/st_logo.png -------------------------------------------------------------------------------- /lib/ST25RFAL002/doc/rfal.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/lib/ST25RFAL002/doc/rfal.chm -------------------------------------------------------------------------------- /lib/subghz/blocks/const.c: -------------------------------------------------------------------------------- 1 | #include "const.h" 2 | -------------------------------------------------------------------------------- /lib/subghz/blocks/encoder.c: -------------------------------------------------------------------------------- 1 | #include "encoder.h" 2 | 3 | #define TAG "SubGhzBlockEncoder" 4 | -------------------------------------------------------------------------------- /lib/u8g2/u8g2_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/lib/u8g2/u8g2_fonts.c -------------------------------------------------------------------------------- /make/base.mk: -------------------------------------------------------------------------------- 1 | OBJ_DIR = .obj 2 | ASM_SOURCES = 3 | C_SOURCES = 4 | CPP_SOURCES = 5 | ASSETS = 6 | OPENOCD_OPTS = 7 | 8 | CFLAGS = 9 | CPPFLAGS = 10 | LDFLAGS = 11 | SVD_FILE = 12 | -------------------------------------------------------------------------------- /make/defaults.mk: -------------------------------------------------------------------------------- 1 | TARGET ?= f7 2 | export TARGET 3 | -------------------------------------------------------------------------------- /make/freertos-heap.mk: -------------------------------------------------------------------------------- 1 | LDFLAGS += -Wl,--wrap,_malloc_r -Wl,--wrap,_free_r -Wl,--wrap,_calloc_r -Wl,--wrap,_realloc_r 2 | -------------------------------------------------------------------------------- /scripts/flipper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/scripts/flipper/__init__.py -------------------------------------------------------------------------------- /scripts/flipper/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimilinuxguy/flipperzero-universal-rf-remote/3d30dc5860904672e519b1ddea119fcd9c93f527/scripts/flipper/assets/__init__.py --------------------------------------------------------------------------------