nt_client 0.5.1

A blazingly fast NetworkTables 4.1 client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";

package wpi.proto;

message ProtobufMatrix {
  uint32 num_rows = 1;
  uint32 num_cols = 2;
  repeated double data = 3;
}

message ProtobufVector {
  repeated double rows = 1;
}