* RPC App: state message and GUI update * Protobuf submodule update Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "../subghz_i.h"
 | 
						|
 | 
						|
void subghz_scene_rpc_on_enter(void* context) {
 | 
						|
    SubGhz* subghz = context;
 | 
						|
    Popup* popup = subghz->popup;
 | 
						|
 | 
						|
    popup_set_header(popup, "Sub-GHz", 82, 28, AlignCenter, AlignBottom);
 | 
						|
    popup_set_text(popup, "RPC mode", 82, 32, AlignCenter, AlignTop);
 | 
						|
 | 
						|
    popup_set_icon(popup, 2, 14, &I_Warning_30x23); // TODO: icon
 | 
						|
 | 
						|
    view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdPopup);
 | 
						|
 | 
						|
    notification_message(subghz->notifications, &sequence_display_backlight_on);
 | 
						|
}
 | 
						|
 | 
						|
bool subghz_scene_rpc_on_event(void* context, SceneManagerEvent event) {
 | 
						|
    SubGhz* subghz = context;
 | 
						|
    Popup* popup = subghz->popup;
 | 
						|
    bool consumed = false;
 | 
						|
 | 
						|
    if(event.type == SceneManagerEventTypeCustom) {
 | 
						|
        consumed = true;
 | 
						|
        if(event.event == SubGhzCustomEventSceneExit) {
 | 
						|
            view_dispatcher_stop(subghz->view_dispatcher);
 | 
						|
        } else if(event.event == SubGhzCustomEventSceneRpcLoad) {
 | 
						|
            string_t file_name;
 | 
						|
            string_init(file_name);
 | 
						|
            path_extract_filename(subghz->file_path, file_name, true);
 | 
						|
 | 
						|
            snprintf(
 | 
						|
                subghz->file_name_tmp,
 | 
						|
                SUBGHZ_MAX_LEN_NAME,
 | 
						|
                "loaded\n%s",
 | 
						|
                string_get_cstr(file_name));
 | 
						|
            popup_set_text(popup, subghz->file_name_tmp, 82, 32, AlignCenter, AlignTop);
 | 
						|
 | 
						|
            string_clear(file_name);
 | 
						|
        }
 | 
						|
    }
 | 
						|
    return consumed;
 | 
						|
}
 | 
						|
 | 
						|
void subghz_scene_rpc_on_exit(void* context) {
 | 
						|
    SubGhz* subghz = context;
 | 
						|
    Popup* popup = subghz->popup;
 | 
						|
 | 
						|
    popup_set_header(popup, NULL, 0, 0, AlignCenter, AlignBottom);
 | 
						|
    popup_set_text(popup, NULL, 0, 0, AlignCenter, AlignTop);
 | 
						|
    popup_set_icon(popup, 0, 0, NULL);
 | 
						|
}
 |