blob: 8456bfaa546ce939ebbea00a052dc0ff3375ba1b [file] [log] [blame]
namespace aos.control_loops;
// This file defines basic messages for a Single Input Single Output (SISO)
// control loop.
table Goal {
goal:double;
}
table Position {
position:double;
}
table Output {
voltage:double;
}
table Status {
done:bool;
}
root_type Goal;
root_type Position;
root_type Output;
root_type Status;