Compare commits

...

2 commits

Author SHA1 Message Date
Bailey Stevens d9d477fe44 Adds protobuf definitions. 2023-09-29 21:04:47 -04:00
Bailey Stevens 5ed2fa97bc Moves mockups into separate folder. 2023-09-29 20:48:14 -04:00
3 changed files with 33 additions and 0 deletions

View file

Before

Width:  |  Height:  |  Size: 219 KiB

After

Width:  |  Height:  |  Size: 219 KiB

View file

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

33
proto/mmelodies.proto Normal file
View 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;
}