Changed format of proto color from bytes array to int32

Former-commit-id: 7dcf0256a81bfafb4a8f69a5a2e2a582d43a1d0d
This commit is contained in:
johan
2013-10-13 20:22:32 +02:00
parent 91dcbd0758
commit d526b8c9c1
3 changed files with 8 additions and 11 deletions

View File

@@ -23,8 +23,8 @@ message ColorRequest {
// priority to use when setting the color
required int32 priority = 1;
// 3-byte value containing the rgb color
required bytes rgbColor = 2;
// integer value containing the rgb color (0x00RRGGBB)
required int32 rgbColor = 2;
// duration of the request (negative results in infinite)
optional int32 duration = 3;