Skip to content

Commit

Permalink
rgb: add dimming value
Browse files Browse the repository at this point in the history
when supported, the dimming value will be used
  • Loading branch information
fouge committed Sep 18, 2024
1 parent 449bb1c commit 4ba8147
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion messages/mcu_messaging_main.proto
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,10 @@ message RgbColor
uint32 red = 1; // [0...255]
uint32 green = 2; // [0...255]
uint32 blue = 3; // [0...255]
uint32 dimming =
4; // [1...31] from low to high brightness.
// /!\ 0 (default if unused) will use full brightness (31)
// the value is clamped to 31
}

// Control brightness and pattern of front-mounted UX/user LEDs.
Expand Down Expand Up @@ -798,7 +802,8 @@ message BatteryResetReason

message ConePresent { bool cone_present = 1; }

message ShutdownScheduled {
message ShutdownScheduled
{
enum ShutdownReason {
UNSPECIFIED = 0;
BATTERY_REMOVED = 1;
Expand Down

0 comments on commit 4ba8147

Please sign in to comment.