z1_controller/include/interface/IOROS.h

38 lines
1.2 KiB
C++

#ifdef COMPILE_WITH_SIMULATION
#ifndef IOROS_H
#define IOROS_H
#include <ros/ros.h>
#include "interface/IOInterface.h"
#include "message/MotorCmd.h"
#include "message/MotorState.h"
class IOROS : public IOInterface{
public:
IOROS();
~IOROS();
bool sendRecv(const LowlevelCmd *cmd, LowlevelState *state);
private:
ros::NodeHandle _nm;
ros::Subscriber _servo_sub[7];
ros::Publisher _servo_pub[7];
unitree_legged_msgs::MotorState _joint_state[7];
unitree_legged_msgs::MotorCmd _joint_cmd[7];
void _sendCmd(const LowlevelCmd *cmd);
void _recvState(LowlevelState *state);
void _initRecv();
void _initSend();
void _joint00Callback(const unitree_legged_msgs::MotorState& msg);
void _joint01Callback(const unitree_legged_msgs::MotorState& msg);
void _joint02Callback(const unitree_legged_msgs::MotorState& msg);
void _joint03Callback(const unitree_legged_msgs::MotorState& msg);
void _joint04Callback(const unitree_legged_msgs::MotorState& msg);
void _joint05Callback(const unitree_legged_msgs::MotorState& msg);
void _gripperCallback(const unitree_legged_msgs::MotorState& msg);
};
#endif // IOROS_H
#endif // COMPILE_WITH_SIMULATION