* Add saving to SD-Card (not ready yet) * Add saving to SD-card (done) * Select previous menu item * Fix central button * Fix current_button * Refactoring * Add notifications * [FL-1417] Add IRDA CLI CLI commands: 1) ir_rx Receives all IR-trafic, decodes and prints result to stdout 2) ir_tx <protocol> <address> <command> Transmits IR-signal. Address and command are hex-formatted * Fix BUG with random memory corruption at random time in random place in random universe in random unknown space and time forever amen * Fix submenu set_selected_item * Bring protocol order back * Add TODO sdcard check
		
			
				
	
	
		
			98 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.3 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_1;
 | 
						|
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_blue_10;
 | 
						|
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_double_vibro;
 | 
						|
extern const NotificationSequence sequence_success;
 | 
						|
extern const NotificationSequence sequence_error;
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |