mirror of
https://github.com/nikdoof/busylight.git
synced 2025-12-22 23:09:24 +00:00
Support Telegram
This commit is contained in:
18
include/statuses.h
Normal file
18
include/statuses.h
Normal file
@@ -0,0 +1,18 @@
|
||||
struct status
|
||||
{
|
||||
char name[20];
|
||||
int r;
|
||||
int g;
|
||||
int b;
|
||||
int blink;
|
||||
};
|
||||
|
||||
struct status statuses[] = {
|
||||
{"busy", 255, 0, 0, 0},
|
||||
{"available", 0, 255, 0, 0},
|
||||
{"away", 150, 255, 0, 0},
|
||||
{"ooo", 255, 0, 255, 0},
|
||||
{"offline", 0, 0, 0, 0},
|
||||
{"blue", 0, 0, 255, 10}
|
||||
};
|
||||
#define STATUSES_COUNT 6
|
||||
Reference in New Issue
Block a user