* settings power: introduce power settings app * power: move power API to separate file * settings power: implement reboot scene * settings power: add power off scene * assets: add crying dolphin, fix Subghz assets names * settings power: fix power off scene GUI * settings power: add battery info scene * power: add cli to application on start hook * power: remove power from main menu * power: move to power service folder * power service: rework power off logic * power: add pubsub events * bt: subscribe to battery level change, update characteristic * application: change order of Settings applications * gui: add bubble element * power: gui improvements * application: rename Notification -> LCD and notifications * Applications: menu order according to documentation and add missing power cli init * settings power: add disconnect USB scene * power cli: notify user to disconnect USB after poweroff * Power: update poweroff message in cli Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			483 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			483 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <gui/view.h>
 | 
						|
 | 
						|
typedef struct BatteryInfo BatteryInfo;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    float vbus_voltage;
 | 
						|
    float gauge_voltage;
 | 
						|
    float gauge_current;
 | 
						|
    float gauge_temperature;
 | 
						|
    uint8_t charge;
 | 
						|
    uint8_t health;
 | 
						|
} BatteryInfoModel;
 | 
						|
 | 
						|
BatteryInfo* battery_info_alloc();
 | 
						|
 | 
						|
void battery_info_free(BatteryInfo* battery_info);
 | 
						|
 | 
						|
View* battery_info_get_view(BatteryInfo* battery_info);
 | 
						|
 | 
						|
void battery_info_set_data(BatteryInfo* battery_info, BatteryInfoModel* data);
 |