 1c0276a0be
			
		
	
	
		1c0276a0be
		
			
		
	
	
	
	
		
			
			* FuriHal: lower MGG display contrast by 4 points * FuriHal: unify external gpio resources initialization * Infrared: parse raw in universal TV file, cleanup it with new ifrared script. Other minor changes. * Gui: fix elements_multiline_text_aligned eating symbols * Lib: human readable errors in flipper application package * Special request from marketing team
		
			
				
	
	
		
			15 lines
		
	
	
		
			341 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			341 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gui/view.h>
 | |
| 
 | |
| typedef struct Hid Hid;
 | |
| typedef struct HidKeyboard HidKeyboard;
 | |
| 
 | |
| HidKeyboard* hid_keyboard_alloc(Hid* bt_hid);
 | |
| 
 | |
| void hid_keyboard_free(HidKeyboard* hid_keyboard);
 | |
| 
 | |
| View* hid_keyboard_get_view(HidKeyboard* hid_keyboard);
 | |
| 
 | |
| void hid_keyboard_set_connected_status(HidKeyboard* hid_keyboard, bool connected);
 |