Skip to content

Commit

Permalink
feat: added BitTrigger
Browse files Browse the repository at this point in the history
  • Loading branch information
guglielmo-boi committed Apr 22, 2024
1 parent 1b40ac1 commit a4e2a73
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion proto/app/app_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,16 @@ message EnumTrigger
string id = 1;
string message = 2;
string signal = 3;
int32 value = 4;
uint64 value = 4;
uint32 color = 5;
}

message BitTrigger
{
string id = 1;
string message = 2;
string signal = 3;
uint64 value = 4;
uint32 color = 5;
}

Expand Down

0 comments on commit a4e2a73

Please sign in to comment.