25 lines
446 B
C
25 lines
446 B
C
|
|
#ifndef BLINKY_THEME_RGB_UPDATE_EVENT_H_
|
||
|
|
#define BLINKY_THEME_RGB_UPDATE_EVENT_H_
|
||
|
|
|
||
|
|
#include <app_event_manager.h>
|
||
|
|
#include <app_event_manager_profiler_tracer.h>
|
||
|
|
|
||
|
|
#include "theme_color.h"
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
struct theme_rgb_update_event {
|
||
|
|
struct app_event_header header;
|
||
|
|
struct theme_rgb theme;
|
||
|
|
};
|
||
|
|
|
||
|
|
APP_EVENT_TYPE_DECLARE(theme_rgb_update_event);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_THEME_RGB_UPDATE_EVENT_H_ */
|