* Notification app: init * Notification app: separate message sequences * Notification app: rename notifications to notification * Notification app: rework api * Notification app: new sequences for charger * Power app: add state for better led handling * Power app: NotificationSequence type, notification led process * Blink app: use notifications * Notification app: sound and vibro notifications * Notification app: note messages * Notification app: more messages * Notification app: update note message generator * Blink app: fix state counter * Notification app: fix delay event * App sd-filesystem: notifications * App notifications: headers c++ compatibility * App notifications: Cmaj success chord sequence * App iButton: use notifications * App notification: display backlight notifications * App notification: add "display on" message to success and error sequences * App accessor: use notifications * App ibutton: guard onewire key read * Lib-RFAL: remove api_hal_light usage * App notification: add blocking mode, rework display api * Cli led command: use internal notification instead of direc access to leds. * App unit test: use notifications * App lfrfid: use notifications * Apps: close notification record * App subghz: rough use of notifications * App notificaton: ignore reset flag * App strobe: removed * Lib irda decoder: fix nec decoding * App irda: fix assert, use notifications * Apps: use notifications * Fix IRDA tests * Cli: better var naming * App notification: readable sources Co-authored-by: Albert Kharisov <albert@flipperdevices.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
#include "notification.h"
 | 
						|
#include "notification-messages-notes.h"
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
/*********************************** Messages **********************************/
 | 
						|
 | 
						|
// Display
 | 
						|
extern const NotificationMessage message_display_on;
 | 
						|
extern const NotificationMessage message_display_off;
 | 
						|
 | 
						|
// Led ON
 | 
						|
extern const NotificationMessage message_red_255;
 | 
						|
extern const NotificationMessage message_green_255;
 | 
						|
extern const NotificationMessage message_blue_255;
 | 
						|
 | 
						|
// Led OFF
 | 
						|
extern const NotificationMessage message_red_0;
 | 
						|
extern const NotificationMessage message_green_0;
 | 
						|
extern const NotificationMessage message_blue_0;
 | 
						|
 | 
						|
// Delay
 | 
						|
extern const NotificationMessage message_delay_10;
 | 
						|
extern const NotificationMessage message_delay_25;
 | 
						|
extern const NotificationMessage message_delay_50;
 | 
						|
extern const NotificationMessage message_delay_100;
 | 
						|
extern const NotificationMessage message_delay_250;
 | 
						|
extern const NotificationMessage message_delay_500;
 | 
						|
extern const NotificationMessage message_delay_1000;
 | 
						|
 | 
						|
// Sound
 | 
						|
extern const NotificationMessage message_sound_off;
 | 
						|
 | 
						|
// Vibro
 | 
						|
extern const NotificationMessage message_vibro_on;
 | 
						|
extern const NotificationMessage message_vibro_off;
 | 
						|
 | 
						|
// Reset
 | 
						|
extern const NotificationMessage message_do_not_reset;
 | 
						|
 | 
						|
/****************************** Message sequences ******************************/
 | 
						|
 | 
						|
// Reset
 | 
						|
extern const NotificationSequence sequence_reset_red;
 | 
						|
extern const NotificationSequence sequence_reset_green;
 | 
						|
extern const NotificationSequence sequence_reset_blue;
 | 
						|
extern const NotificationSequence sequence_reset_rgb;
 | 
						|
extern const NotificationSequence sequence_reset_display;
 | 
						|
extern const NotificationSequence sequence_reset_sound;
 | 
						|
extern const NotificationSequence sequence_reset_vibro;
 | 
						|
 | 
						|
// Vibro
 | 
						|
extern const NotificationSequence sequence_set_vibro_on;
 | 
						|
 | 
						|
// Display
 | 
						|
extern const NotificationSequence sequence_display_on;
 | 
						|
extern const NotificationSequence sequence_display_off;
 | 
						|
 | 
						|
// Charging
 | 
						|
extern const NotificationSequence sequence_charging;
 | 
						|
extern const NotificationSequence sequence_charged;
 | 
						|
extern const NotificationSequence sequence_not_charging;
 | 
						|
 | 
						|
// Light up
 | 
						|
extern const NotificationSequence sequence_set_only_red_255;
 | 
						|
extern const NotificationSequence sequence_set_only_green_255;
 | 
						|
extern const NotificationSequence sequence_set_only_blue_255;
 | 
						|
extern const NotificationSequence sequence_set_red_255;
 | 
						|
extern const NotificationSequence sequence_set_green_255;
 | 
						|
extern const NotificationSequence sequence_set_blue_255;
 | 
						|
 | 
						|
// Blink
 | 
						|
extern const NotificationSequence sequence_blink_red_10;
 | 
						|
extern const NotificationSequence sequence_blink_green_10;
 | 
						|
extern const NotificationSequence sequence_blink_yellow_10;
 | 
						|
 | 
						|
extern const NotificationSequence sequence_blink_red_100;
 | 
						|
extern const NotificationSequence sequence_blink_green_100;
 | 
						|
extern const NotificationSequence sequence_blink_blue_100;
 | 
						|
extern const NotificationSequence sequence_blink_yellow_100;
 | 
						|
extern const NotificationSequence sequence_blink_cyan_100;
 | 
						|
extern const NotificationSequence sequence_blink_magenta_100;
 | 
						|
extern const NotificationSequence sequence_blink_white_100;
 | 
						|
 | 
						|
// General
 | 
						|
extern const NotificationSequence sequence_success;
 | 
						|
extern const NotificationSequence sequence_error;
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif |