* RPC App control commands * Button release timeout * SubGhz tx fix Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			315 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			315 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
#include "../lfrfid_app.h"
 | 
						|
 | 
						|
class LfRfidAppSceneRpc : public GenericScene<LfRfidApp> {
 | 
						|
public:
 | 
						|
    void on_enter(LfRfidApp* app, bool need_restore) final;
 | 
						|
    bool on_event(LfRfidApp* app, LfRfidApp::Event* event) final;
 | 
						|
    void on_exit(LfRfidApp* app) final;
 | 
						|
 | 
						|
private:
 | 
						|
    bool emulating = false;
 | 
						|
};
 |