@@ -178,6 +178,21 @@ def __init__(self, channel):
178178 request_serializer = anki__vector_dot_messaging_dot_messages__pb2 .DriveOnChargerRequest .SerializeToString ,
179179 response_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .DriveOnChargerResponse .FromString ,
180180 )
181+ self .FindFaces = channel .unary_unary (
182+ '/Anki.Vector.external_interface.ExternalInterface/FindFaces' ,
183+ request_serializer = anki__vector_dot_messaging_dot_messages__pb2 .FindFacesRequest .SerializeToString ,
184+ response_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .FindFacesResponse .FromString ,
185+ )
186+ self .LookAroundInPlace = channel .unary_unary (
187+ '/Anki.Vector.external_interface.ExternalInterface/LookAroundInPlace' ,
188+ request_serializer = anki__vector_dot_messaging_dot_messages__pb2 .LookAroundInPlaceRequest .SerializeToString ,
189+ response_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .LookAroundInPlaceResponse .FromString ,
190+ )
191+ self .RollBlock = channel .unary_unary (
192+ '/Anki.Vector.external_interface.ExternalInterface/RollBlock' ,
193+ request_serializer = anki__vector_dot_messaging_dot_messages__pb2 .RollBlockRequest .SerializeToString ,
194+ response_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .RollBlockResponse .FromString ,
195+ )
181196 self .PhotosInfo = channel .unary_unary (
182197 '/Anki.Vector.external_interface.ExternalInterface/PhotosInfo' ,
183198 request_serializer = anki__vector_dot_messaging_dot_messages__pb2 .PhotosInfoRequest .SerializeToString ,
@@ -248,6 +263,11 @@ def __init__(self, channel):
248263 request_serializer = anki__vector_dot_messaging_dot_messages__pb2 .PlaceObjectOnGroundHereRequest .SerializeToString ,
249264 response_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .PlaceObjectOnGroundHereResponse .FromString ,
250265 )
266+ self .SetMasterVolume = channel .unary_unary (
267+ '/Anki.Vector.external_interface.ExternalInterface/SetMasterVolume' ,
268+ request_serializer = anki__vector_dot_messaging_dot_messages__pb2 .MasterVolumeRequest .SerializeToString ,
269+ response_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .MasterVolumeResponse .FromString ,
270+ )
251271 self .UserAuthentication = channel .unary_unary (
252272 '/Anki.Vector.external_interface.ExternalInterface/UserAuthentication' ,
253273 request_serializer = anki__vector_dot_messaging_dot_shared__pb2 .UserAuthenticationRequest .SerializeToString ,
@@ -574,6 +594,27 @@ def DriveOnCharger(self, request, context):
574594 context .set_details ('Method not implemented!' )
575595 raise NotImplementedError ('Method not implemented!' )
576596
597+ def FindFaces (self , request , context ):
598+ """Make Vector look for faces by turning and angling his head
599+ """
600+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
601+ context .set_details ('Method not implemented!' )
602+ raise NotImplementedError ('Method not implemented!' )
603+
604+ def LookAroundInPlace (self , request , context ):
605+ """Make Vector look around in place by turning and moving his head
606+ """
607+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
608+ context .set_details ('Method not implemented!' )
609+ raise NotImplementedError ('Method not implemented!' )
610+
611+ def RollBlock (self , request , context ):
612+ """Make Vector roll his block, regardless of relative position and orientation
613+ """
614+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
615+ context .set_details ('Method not implemented!' )
616+ raise NotImplementedError ('Method not implemented!' )
617+
577618 def PhotosInfo (self , request , context ):
578619 """Get the photos info.
579620 """
@@ -672,6 +713,13 @@ def PlaceObjectOnGroundHere(self, request, context):
672713 context .set_details ('Method not implemented!' )
673714 raise NotImplementedError ('Method not implemented!' )
674715
716+ def SetMasterVolume (self , request , context ):
717+ """Set the Robot's master volume
718+ """
719+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
720+ context .set_details ('Method not implemented!' )
721+ raise NotImplementedError ('Method not implemented!' )
722+
675723 def UserAuthentication (self , request , context ):
676724 # missing associated documentation comment in .proto file
677725 pass
@@ -977,6 +1025,21 @@ def add_ExternalInterfaceServicer_to_server(servicer, server):
9771025 request_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .DriveOnChargerRequest .FromString ,
9781026 response_serializer = anki__vector_dot_messaging_dot_messages__pb2 .DriveOnChargerResponse .SerializeToString ,
9791027 ),
1028+ 'FindFaces' : grpc .unary_unary_rpc_method_handler (
1029+ servicer .FindFaces ,
1030+ request_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .FindFacesRequest .FromString ,
1031+ response_serializer = anki__vector_dot_messaging_dot_messages__pb2 .FindFacesResponse .SerializeToString ,
1032+ ),
1033+ 'LookAroundInPlace' : grpc .unary_unary_rpc_method_handler (
1034+ servicer .LookAroundInPlace ,
1035+ request_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .LookAroundInPlaceRequest .FromString ,
1036+ response_serializer = anki__vector_dot_messaging_dot_messages__pb2 .LookAroundInPlaceResponse .SerializeToString ,
1037+ ),
1038+ 'RollBlock' : grpc .unary_unary_rpc_method_handler (
1039+ servicer .RollBlock ,
1040+ request_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .RollBlockRequest .FromString ,
1041+ response_serializer = anki__vector_dot_messaging_dot_messages__pb2 .RollBlockResponse .SerializeToString ,
1042+ ),
9801043 'PhotosInfo' : grpc .unary_unary_rpc_method_handler (
9811044 servicer .PhotosInfo ,
9821045 request_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .PhotosInfoRequest .FromString ,
@@ -1047,6 +1110,11 @@ def add_ExternalInterfaceServicer_to_server(servicer, server):
10471110 request_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .PlaceObjectOnGroundHereRequest .FromString ,
10481111 response_serializer = anki__vector_dot_messaging_dot_messages__pb2 .PlaceObjectOnGroundHereResponse .SerializeToString ,
10491112 ),
1113+ 'SetMasterVolume' : grpc .unary_unary_rpc_method_handler (
1114+ servicer .SetMasterVolume ,
1115+ request_deserializer = anki__vector_dot_messaging_dot_messages__pb2 .MasterVolumeRequest .FromString ,
1116+ response_serializer = anki__vector_dot_messaging_dot_messages__pb2 .MasterVolumeResponse .SerializeToString ,
1117+ ),
10501118 'UserAuthentication' : grpc .unary_unary_rpc_method_handler (
10511119 servicer .UserAuthentication ,
10521120 request_deserializer = anki__vector_dot_messaging_dot_shared__pb2 .UserAuthenticationRequest .FromString ,
0 commit comments