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
16
17
syntax = "proto3";

package wpi.proto;

import "geometry2d.proto";

message ProtobufTrajectoryState {
  double time = 1;
  double velocity = 2;
  double acceleration = 3;
  ProtobufPose2d pose = 4;
  double curvature = 5;
}

message ProtobufTrajectory {
  repeated ProtobufTrajectoryState states = 2;
}