Compare commits
2 commits
63951dc842
...
d9d477fe44
Author | SHA1 | Date | |
---|---|---|---|
|
d9d477fe44 | ||
|
5ed2fa97bc |
Before Width: | Height: | Size: 219 KiB After Width: | Height: | Size: 219 KiB |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
33
proto/mmelodies.proto
Normal file
33
proto/mmelodies.proto
Normal file
|
@ -0,0 +1,33 @@
|
|||
syntax = "proto3";
|
||||
|
||||
service ParameterService {
|
||||
rpc SetParameters(ParameterRequest) returns (ParameterResponse) {};
|
||||
}
|
||||
|
||||
message ParameterRequest {
|
||||
optional uint32 velocity = 1;
|
||||
optional uint32 tempo = 2;
|
||||
optional uint32 delay_time = 3;
|
||||
optional uint32 delay_feedback = 4;
|
||||
optional uint32 filter_cutoff = 5;
|
||||
optional uint32 echo_mix = 6;
|
||||
}
|
||||
|
||||
message ParameterResponse {
|
||||
uint32 velocity = 1;
|
||||
uint32 tempo = 2;
|
||||
uint32 delay_time = 3;
|
||||
uint32 delay_feedback = 4;
|
||||
uint32 filter_cutoff = 5;
|
||||
uint32 echo_mix = 6;
|
||||
}
|
||||
|
||||
service ScopeService {
|
||||
rpc GetSamples(ScopeSamplesRequest) returns (ScopeSamplesResponse) {};
|
||||
}
|
||||
|
||||
message ScopeSamplesRequest {}
|
||||
|
||||
message ScopeSamplesResponse {
|
||||
bytes samples = 1;
|
||||
}
|
Loading…
Reference in a new issue