Start moving RGB MOD from Notification to RGB MOD service.

This commit is contained in:
Dmitry422
2025-03-11 18:54:12 +07:00
parent 687a6fd630
commit 9e6593c09e
10 changed files with 54 additions and 2 deletions

View 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;
}