mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-22 05:14:46 -07:00
Start moving RGB MOD from Notification to RGB MOD service.
This commit is contained in:
15
applications/services/rgb_backlight/rgb_backlight.c
Normal file
15
applications/services/rgb_backlight/rgb_backlight.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <furi.h>
|
||||
#include "rgb_backlight.h"
|
||||
|
||||
#define TAG "RGB_BACKLIGHT_SRV"
|
||||
|
||||
int32_t rgb_backlight_srv (void* p){
|
||||
UNUSED (p);
|
||||
while (1){
|
||||
FURI_LOG_I (TAG,"working");
|
||||
furi_delay_ms (2000);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user