forked from eclipse-velocitas/vehicle-app-kotlin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
107 additions
and
58 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
syntax = "proto3"; | ||
|
||
message UnlockDoorRequest { | ||
} | ||
|
||
message UnlockDoorResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
message LockDoorRequest { | ||
} | ||
|
||
message LockDoorResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
service DoorService { | ||
rpc UnlockDoor(UnlockDoorRequest) returns (UnlockDoorResponse); | ||
rpc LockDoor(LockDoorRequest) returns (LockDoorResponse); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
syntax = "proto3"; | ||
|
||
message FoldMirrorsRequest { | ||
} | ||
|
||
message FoldMirrorsResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
message UnfoldMirrorsRequest { | ||
} | ||
|
||
message UnfoldMirrorsResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
message GetMirrorFoldStatusRequest { | ||
} | ||
|
||
message GetMirrorFoldStatusResponse { | ||
optional uint32 status = 1; | ||
} | ||
|
||
message SetMirrorFoldStatusRequest { | ||
optional uint32 mirrorFoldStatus = 1; | ||
} | ||
|
||
message SetMirrorFoldStatusResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
service FoldingService { | ||
rpc FoldMirrors(FoldMirrorsRequest) returns (FoldMirrorsResponse); | ||
rpc UnfoldMirrors(UnfoldMirrorsRequest) returns (UnfoldMirrorsResponse); | ||
rpc GetMirrorFoldStatus(GetMirrorFoldStatusRequest) returns (GetMirrorFoldStatusResponse); | ||
rpc SetMirrorFoldStatus(SetMirrorFoldStatusRequest) returns (SetMirrorFoldStatusResponse); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
syntax = "proto3"; | ||
|
||
message EnableAirConditioningRequest { | ||
} | ||
|
||
message EnableAirConditioningResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
message DisableAirConditioningRequest { | ||
} | ||
|
||
message DisableAirConditioningResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
message GetAirConditioningStatusRequest { | ||
} | ||
|
||
message GetAirConditioningStatusResponse { | ||
optional uint32 status = 1; | ||
} | ||
|
||
message SetAirConditioningStatusRequest { | ||
optional uint32 airConditioningStatus = 1; | ||
} | ||
|
||
message SetAirConditioningStatusResponse { | ||
optional bool success = 1; | ||
} | ||
|
||
service FronthousingService { | ||
rpc EnableAirConditioning(EnableAirConditioningRequest) returns (EnableAirConditioningResponse); | ||
rpc DisableAirConditioning(DisableAirConditioningRequest) returns (DisableAirConditioningResponse); | ||
rpc GetAirConditioningStatus(GetAirConditioningStatusRequest) returns (GetAirConditioningStatusResponse); | ||
rpc SetAirConditioningStatus(SetAirConditioningStatusRequest) returns (SetAirConditioningStatusResponse); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters