Skip to content

Commit

Permalink
enhancement #64 : adding say text method
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienDanieau committed Nov 15, 2023
1 parent c3dc6bf commit a141e8b
Show file tree
Hide file tree
Showing 17 changed files with 396 additions and 1,522 deletions.
6 changes: 6 additions & 0 deletions protos/sound.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ message SoundId {
string id = 1;
}

message TextRequest {
string text = 1;
}

message RecordingAck {
SoundAck ack = 1;
SoundId recording_id = 2;
Expand Down Expand Up @@ -78,4 +82,6 @@ service SoundService {
rpc StopSound (component.ComponentId) returns (google.protobuf.Empty);

rpc GetSoundsList(google.protobuf.Empty) returns (ListOfSound);

rpc SayText (TextRequest) returns (google.protobuf.Empty);
}
237 changes: 42 additions & 195 deletions python/reachy_sdk_api_v2/arm_pb2.py

Large diffs are not rendered by default.

45 changes: 10 additions & 35 deletions python/reachy_sdk_api_v2/component_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

143 changes: 26 additions & 117 deletions python/reachy_sdk_api_v2/dynamixel_motor_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 6 additions & 15 deletions python/reachy_sdk_api_v2/error_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a141e8b

Please sign in to comment.