blob: 7d4b92ddd9c2035bd71d09d3f3870832e3cedc40 [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 Silvermanc7e8fdd2015-12-06 02:48:27 -05006#include "PowerDistributionPanel.h"
7
Brian Silverman811f8ec2015-12-06 01:29:42 -05008class DriverStation;
9
10namespace frc971 {
11namespace wpilib {
12
13// Sends out a message on ::aos::robot_state.
Brian Silvermanc7e8fdd2015-12-06 02:48:27 -050014void SendRobotState(int32_t my_pid, DriverStation *ds,
15 PowerDistributionPanel *pdp);
Brian Silverman811f8ec2015-12-06 01:29:42 -050016
17} // namespace wpilib
18} // namespace frc971
19
20#endif // FRC971_WPILIB_WPILIB_INTERFACE_H_