blob: be5b7dbbb3799bf811359245cf8db2d726b4ee4f [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 (id: 0);
}
table Position {
position:double (id: 0);
}
table Output {
voltage:double (id: 0);
}
table Status {
done:bool (id: 0);
}
root_type Goal;
root_type Position;
root_type Output;
root_type Status;