blob: 100c67e14d703f1eebe439ed33184e38532e6738 [file] [log] [blame]
Brian Silverman811f8ec2015-12-06 01:29:42 -05001#ifndef FRC971_WPILIB_WPILIB_INTERFACE_H_
2#define FRC971_WPILIB_WPILIB_INTERFACE_H_
3
4#include <stdint.h>
5
Brian Silverman811f8ec2015-12-06 01:29:42 -05006namespace frc971 {
7namespace wpilib {
8
9// Sends out a message on ::aos::robot_state.
Austin Schuh94f51e92017-10-30 19:25:32 -070010void SendRobotState(int32_t my_pid);
Brian Silverman811f8ec2015-12-06 01:29:42 -050011
12} // namespace wpilib
13} // namespace frc971
14
15#endif // FRC971_WPILIB_WPILIB_INTERFACE_H_