Refactor python module structure

This commit is contained in:
Piv
2020-03-05 21:43:22 +10:30
parent 043c8783a4
commit 82a214c209
24 changed files with 20 additions and 120 deletions

View File

@@ -0,0 +1,32 @@
syntax = "proto3";
message SlamDetails {
int32 map_size_pixels = 1;
int32 map_size_meters = 2;
int32 port = 3;
}
message SlamRow{
repeated int32 points = 1;
}
message SlamLocation{
float x = 1;
float y = 2;
float theta = 3;
}
message SlamScan{
bytes map = 1;
SlamLocation location = 2;
}
message Empty{
}
service SlamControl {
rpc start_map_streaming(SlamDetails) returns (Empty) {}
rpc stop_streaming(Empty) returns (Empty) {}
}