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
14
15
syntax = "proto3";

package wpi.proto;

import "wpimath.proto";

message ProtobufLinearSystem {
  uint32 num_states = 1;
  uint32 num_inputs = 2;
  uint32 num_outputs = 3;
  ProtobufMatrix a = 4;
  ProtobufMatrix b = 5;
  ProtobufMatrix c = 6;
  ProtobufMatrix d = 7;
}